diff options
Diffstat (limited to 'tools/Cargo.toml')
-rw-r--r-- | tools/Cargo.toml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/Cargo.toml b/tools/Cargo.toml index 9eb488b..006a7a1 100644 --- a/tools/Cargo.toml +++ b/tools/Cargo.toml @@ -12,9 +12,11 @@ log = "0.4.18" env_logger = "0.10.0" anyhow = "1.0.71" clap = { version = "4.3.0", features = ["derive"] } +reqwest = { version = "0.11.18", features = ["blocking", "json"] } + serde = { version = "1.0.164", features = ["derive"] } serde_json = "1.0.96" -reqwest = { version = "0.11.18", features = ["blocking", "json"] } +bincode = { version = "2.0.0-rc.3", features = ["serde"] } [[bin]] path = "src/bin/import.rs" |