Releases: odarbelaeze/vegas-lattice-rs
Releases · odarbelaeze/vegas-lattice-rs
0.9.0
What's Changed
- Implement into vampire command by @odarbelaeze in #54
- Make sure we don't use Axis outside the crate by @odarbelaeze in #55
Full Changelog: 0.8.0...0.9.0
0.8.0
0.7.1
What's Changed
- use cargo toml for name and version by @odarbelaeze in #52
Full Changelog: 0.7.0...0.7.1
0.7.0
What's Changed
- Use thiserror for error handling by @odarbelaeze in #51
Full Changelog: 0.6.0...0.7.0
0.6.0
What's Changed
- Migrate commandline interface to clap by @odarbelaeze in #49
- fix lattice creators by @odarbelaeze in #50
Full Changelog: 0.5.2...0.6.0
0.5.2
Full Changelog: 0.5.1...0.5.2
0.5.1
Bubbled up the examples from lattice.rs
to lib.rs
.
Full Changelog: 0.5.0...0.5.1
0.5.0
What's Changed
- Do some code cleanup by @odarbelaeze in #47
- Add basic documentation by @odarbelaeze in #48
Full Changelog: 0.4.0...0.5.0
0.4.0
Does general fix-ups here and there, cargo clippy
many things, cargo fmt
many things. Drop the itertools dependency.
0.3.0
Now you can go like:
$ vl check docs/bcc.json | vl pretty
{
"size": [
1.0,
1.0,
1.0
],
"sites": [
{"kind": "Fe", "position": [0.0, 0.0, 0.0], "tags": null},
{"kind": "Pt", "position": [0.5, 0.5, 0.5], "tags": null}
],
"vertices": [
{"source": 0, "target": 1, "delta": [0, 0, 0], "tags": null},
{"source": 0, "target": 1, "delta": [0, -1, 0], "tags": null},
{"source": 0, "target": 1, "delta": [-1, 0, 0], "tags": null},
{"source": 0, "target": 1, "delta": [-1, -1, 0], "tags": null}
]
}
so that lattices are more legible.