diff --git a/Cargo.toml b/Cargo.toml index 5133b69..2dd2412 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,8 +11,8 @@ version = "0.0.1" [dependencies] anyhow = "^1.0" -chrono = "^0.4" -clap = "^2.3" +chrono = { version = "0.4.19", features = ["clock", "serde"] } +clap = { version = "4.3.5", features = ["derive", "unstable-styles"] } diem-temppath = { git = "https://github.com/0LNetworkCommunity/diem.git", branch = "release" } diem-types = { git = "https://github.com/0LNetworkCommunity/diem.git", branch = "release" } diem-crypto = { git = "https://github.com/0LNetworkCommunity/diem.git", branch = "release" } @@ -25,10 +25,11 @@ libra-storage = { git = "https://github.com/0o-de-lally/libra-framework.git", b libra-types = { git = "https://github.com/0o-de-lally/libra-framework.git", branch = "legacy-compat" } log = "^0.4" once_cell = "^1.2" -serde = "^1.0" -serde_json = "^1.0" -tokio = "^1.3" -neo4rs = "^0.7" +serde = { version = "^1.0", features = ["derive", "rc"] } +serde_json = { version = "^1", features = ["preserve_order"] } + +tokio = { version = "1", features = ["full"] } +neo4rs = "0.8.0" [dev-dependencies]