diff options
author | Aria <me@aria.rip> | 2023-10-13 01:35:19 +0100 |
---|---|---|
committer | Aria <me@aria.rip> | 2023-10-13 01:35:19 +0100 |
commit | e9ae00db22f30fcf0cfa8f7e05232aed46efb39b (patch) | |
tree | 9634bba1611bfdbda494d909097bbb22258a8999 /unique_ids | |
parent | d3b2274504d16770ff1a3162cae4053a0820c284 (diff) |
use workspace dependencies for serde
Diffstat (limited to 'unique_ids')
-rw-r--r-- | unique_ids/Cargo.toml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unique_ids/Cargo.toml b/unique_ids/Cargo.toml index e7424bf..2d89771 100644 --- a/unique_ids/Cargo.toml +++ b/unique_ids/Cargo.toml @@ -6,7 +6,7 @@ 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" +serde = { workspace = true } +serde_json = { workspace = true } common = { path = "../common/" } rand = "0.8.5" |