Skip to content

Commit

Permalink
0.0.16: bump deps (#183)
Browse files Browse the repository at this point in the history
* 0.0.16: bump deps
* update compatibility matrix

---------

Signed-off-by: Sam Batschelet <[email protected]>
  • Loading branch information
hexfusion authored Jun 7, 2023
1 parent eeec6fc commit 0cad06d
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
8 changes: 4 additions & 4 deletions tests/e2e/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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
16 changes: 8 additions & 8 deletions timestampvm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -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"] }
Expand Down

0 comments on commit 0cad06d

Please sign in to comment.