diff --git a/README.md b/README.md index df91511..481d38e 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,7 @@ See [`bin/timestampvm`](timestampvm/src/bin/timestampvm/main.rs) for plugin impl | v0.0.10 | v1.9.8, v1.9.9 | | v0.0.11,12 | v1.9.10 - v1.9.16 | | v0.0.13 | v1.10.0 | -| v0.0.14 | v1.10.1+ | +| v0.0.14,15 | v1.10.1+ | ## Example diff --git a/tests/e2e/Cargo.toml b/tests/e2e/Cargo.toml index c3b4177..d37fe36 100644 --- a/tests/e2e/Cargo.toml +++ b/tests/e2e/Cargo.toml @@ -2,7 +2,7 @@ name = "e2e" version = "0.0.0" edition = "2021" -rust-version = "1.68" +rust-version = "1.69" publish = false description = "Byzantine tests for Avalanche Go" license = "BSD-3-Clause" @@ -13,11 +13,11 @@ homepage = "https://avax.network" [dev-dependencies] avalanche-installer = "0.0.76" avalanche-network-runner-sdk = "0.3.0" # https://crates.io/crates/avalanche-network-runner-sdk -avalanche-types = { version = "0.0.395", features = ["jsonrpc_client", "subnet"] } # https://crates.io/crates/avalanche-types +avalanche-types = { version = "0.0.396", features = ["jsonrpc_client", "subnet"] } # https://crates.io/crates/avalanche-types env_logger = "0.10.0" -log = "0.4.17" +log = "0.4.18" random-manager = "0.0.5" serde_json = "1.0.96" # https://github.com/serde-rs/json/releases -tempfile = "3.5.0" +tempfile = "3.6.0" timestampvm = { path = "../../timestampvm" } tokio = { version = "1.28.2", features = [] } # https://github.com/tokio-rs/tokio/releases diff --git a/timestampvm/Cargo.toml b/timestampvm/Cargo.toml index e157a3e..a13c39f 100644 --- a/timestampvm/Cargo.toml +++ b/timestampvm/Cargo.toml @@ -1,8 +1,8 @@ [package] name = "timestampvm" -version = "0.0.15" # https://crates.io/crates/timestampvm +version = "0.0.16" # https://crates.io/crates/timestampvm edition = "2021" -rust-version = "1.68" +rust-version = "1.69" publish = true description = "Timestamp VM in Rust" documentation = "https://docs.rs/timestampvm" @@ -11,20 +11,20 @@ repository = "https://github.com/ava-labs/timestampvm-rs" readme = "../README.md" [dependencies] -avalanche-types = { version = "0.0.395", features = ["subnet", "codec_base64"] } # https://crates.io/crates/avalanche-types +avalanche-types = { version = "0.0.396", features = ["subnet", "codec_base64"] } # https://crates.io/crates/avalanche-types base64 = { version = "0.21.2" } bytes = "1.4.0" -chrono = "0.4.25" -clap = { version = "4.3.0", features = ["cargo", "derive"] } # https://github.com/clap-rs/clap/releases +chrono = "0.4.26" +clap = { version = "4.3.2", features = ["cargo", "derive"] } # https://github.com/clap-rs/clap/releases derivative = "2.2.0" env_logger = "0.10.0" http-manager = { version = "0.0.14" } jsonrpc-core = "18.0.0" jsonrpc-core-client = { version = "18.0.0" } jsonrpc-derive = "18.0.0" -log = "0.4.17" -semver = "1.0.16" -serde = { version = "1.0.152", features = ["derive"] } +log = "0.4.18" +semver = "1.0.17" +serde = { version = "1.0.163", features = ["derive"] } serde_json = "1.0.96" # https://github.com/serde-rs/json/releases serde_with = { version = "3.0.0", features = ["hex"] } tokio = { version = "1.28.2", features = ["fs", "rt-multi-thread"] }