diff options
Diffstat (limited to 'unique_ids/Cargo.toml')
-rw-r--r-- | unique_ids/Cargo.toml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/unique_ids/Cargo.toml b/unique_ids/Cargo.toml new file mode 100644 index 0000000..e7424bf --- /dev/null +++ b/unique_ids/Cargo.toml @@ -0,0 +1,12 @@ +[package] +name = "unique_ids" +version = "0.1.0" +edition = "2021" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] +serde = { version = "1.0.185", features = ["derive"] } +serde_json = "1.0.105" +common = { path = "../common/" } +rand = "0.8.5" |