diff options
author | Alex Auvolat <alex@adnab.me> | 2023-03-09 10:42:11 +0100 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2023-03-09 10:42:11 +0100 |
commit | 878414bfb7fc227a85589617bf433ce4adc0ebbe (patch) | |
tree | a01ccbe7f0d7ac1f1ac18260b5783694ec9bf619 /Cargo.toml | |
download | wgautomesh-878414bfb7fc227a85589617bf433ce4adc0ebbe.tar.gz wgautomesh-878414bfb7fc227a85589617bf433ce4adc0ebbe.zip |
first commit
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..319862c --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,16 @@ +[package] +name = "wgautomesh" +version = "0.1.0" +edition = "2021" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] +xxhash-rust = { version = "0.8", default-features = false, features = ["xxh3"] } +anyhow = "1.0" +log = "0.4" +pretty_env_logger = "0.4.0" + +serde = { version = "1.0", features = ["derive"] } +bincode = "1.3" +toml = { version = "0.7", default-features = false, features = ["parse"] } |