diff --git a/src/event/Cargo.toml b/src/event/Cargo.toml index cabb0681..12781e7f 100644 --- a/src/event/Cargo.toml +++ b/src/event/Cargo.toml @@ -11,7 +11,7 @@ db3-crypto={path="../crypto"} db3-proto={path="../proto"} serde_json = { workspace=true} bytes = "1" -prost = "0.11" +prost = "0.13" prost-types = "0.12" db3-storage={path="../storage"} ethabi = { version = "18.0.0", default-features = false, features = ["full-serde", "rlp"] } diff --git a/src/node/Cargo.toml b/src/node/Cargo.toml index fc9dfa5e..61a5a989 100644 --- a/src/node/Cargo.toml +++ b/src/node/Cargo.toml @@ -28,7 +28,7 @@ hex = "0.4.3" rand = "0.8.5" tempdir = "0.3.7" serde_json = { workspace=true} -prost = "0.11" +prost = "0.13" prost-types = "0.12" tokio = { version = "1.17.0", features = ["full"] } tokio-stream = "0.1.12" diff --git a/src/proto/Cargo.toml b/src/proto/Cargo.toml index 97a526a4..843f50fc 100644 --- a/src/proto/Cargo.toml +++ b/src/proto/Cargo.toml @@ -9,7 +9,7 @@ repository = "https://github.com/db3-teams/db3" keywords = ["database", "web3","db3"] [dependencies] -prost = "0.11" +prost = "0.13" prost-types = "0.12" serde = { version = "1.0", features = ["derive"] } serde_json = {workspace=true} diff --git a/src/sdk/Cargo.toml b/src/sdk/Cargo.toml index cd976db5..59fc2a95 100644 --- a/src/sdk/Cargo.toml +++ b/src/sdk/Cargo.toml @@ -17,7 +17,7 @@ bytes = { version = "1.0", default-features = false } tokio = { version = "1.17.0", features = ["full"] } tonic = { workspace=true, features = ["tls-roots"]} tonic-web = {workspace=true} -prost = "0.11" +prost = "0.13" prost-types = "0.12" chrono = "0.4.22" rand = "0.8.5" diff --git a/src/storage/Cargo.toml b/src/storage/Cargo.toml index c1127c01..73812532 100644 --- a/src/storage/Cargo.toml +++ b/src/storage/Cargo.toml @@ -17,7 +17,7 @@ tracing = "0.1" fastcrypto = { workspace = true, features = ["copy_key"] } hex = "0.4.3" bytes = "1" -prost = "0.11" +prost = "0.13" prost-types = "0.12" tempdir = "0.3.7" byteorder = "1.4.3"