Skip to content

Commit

Permalink
chore: fix up evmlib and sn_evm references
Browse files Browse the repository at this point in the history
These crates were not being correctly referenced in some other crates, which meant some release
configurations would not build properly.
  • Loading branch information
jacderida committed Oct 16, 2024
1 parent 1d4d319 commit c96ceee
Show file tree
Hide file tree
Showing 10 changed files with 16 additions and 17 deletions.
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions autonomi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ sn_networking = { path = "../sn_networking", version = "0.19.0-rc.1" }
sn_peers_acquisition = { path = "../sn_peers_acquisition", version = "0.5.4-rc.1" }
sn_protocol = { version = "0.17.12-rc.1", path = "../sn_protocol" }
sn_registers = { path = "../sn_registers", version = "0.4.0-rc.1" }
sn_evm = { path = "../sn_evm" }
sn_evm = { path = "../sn_evm", version = "0.1.1-rc.1" }
thiserror = "1.0.23"
tokio = { version = "1.35.0", features = ["sync"] }
tracing = { version = "~0.1.26" }
Expand All @@ -66,7 +66,7 @@ wasm-bindgen-test = "0.3.43"

[target.'cfg(target_arch = "wasm32")'.dependencies]
console_error_panic_hook = "0.1.7"
evmlib = { path = "../evmlib", version = "0.1", features = ["wasm-bindgen"] }
evmlib = { path = "../evmlib", version = "0.1.1-rc.1", features = ["wasm-bindgen"] }
# See https://github.com/sebcrozet/instant/blob/7bd13f51f5c930239fddc0476a837870fb239ed7/README.md#using-instant-for-a-wasm-platform-where-performancenow-is-not-available
instant = { version = "0.1", features = ["wasm-bindgen", "inaccurate"] }
js-sys = "0.3.70"
Expand Down
4 changes: 2 additions & 2 deletions evm_testnet/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ version = "0.1.1-rc.1"
[dependencies]
clap = { version = "4.5", features = ["derive"] }
dirs-next = "~2.0.0"
evmlib = { path = "../evmlib" }
sn_evm = { path = "../sn_evm" }
evmlib = { path = "../evmlib", version = "0.1.1-rc.1" }
sn_evm = { path = "../sn_evm", version = "0.1.1-rc.1" }
tokio = { version = "1.40", features = ["rt-multi-thread", "signal"] }

[lints]
Expand Down
2 changes: 1 addition & 1 deletion node-launchpad/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ serde = { version = "1.0.188", features = ["derive"] }
serde_json = "1.0.107"
signal-hook = "0.3.17"
sn_build_info = { path = "../sn_build_info", version = "0.1.16-rc.1" }
sn_evm = { path = "../sn_evm", version = "0.1" }
sn_evm = { path = "../sn_evm", version = "0.1.1-rc.1" }
sn-node-manager = { version = "0.11.0-rc.1", path = "../sn_node_manager" }
sn_peers_acquisition = { version = "0.5.4-rc.1", path = "../sn_peers_acquisition" }
sn_protocol = { path = "../sn_protocol", version = "0.17.12-rc.1" }
Expand Down
2 changes: 1 addition & 1 deletion sn_evm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ local = ["evmlib/local"]

[dependencies]
custom_debug = "~0.6.1"
evmlib = { path = "../evmlib" }
evmlib = { path = "../evmlib", version = "0.1.1-rc.1" }
hex = "~0.4.3"
lazy_static = "~1.4.0"
libp2p = { version = "0.53", features = ["identify", "kad"] }
Expand Down
2 changes: 1 addition & 1 deletion sn_networking/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ sn_build_info = { path = "../sn_build_info", version = "0.1.16-rc.1" }
sn_protocol = { path = "../sn_protocol", version = "0.17.12-rc.1" }
sn_transfers = { path = "../sn_transfers", version = "0.20.0-rc.1" }
sn_registers = { path = "../sn_registers", version = "0.4.0-rc.1" }
sn_evm = { path = "../sn_evm", version = "0.1" }
sn_evm = { path = "../sn_evm", version = "0.1.1-rc.1" }
sysinfo = { version = "0.30.8", default-features = false, optional = true }
thiserror = "1.0.23"
tiny-keccak = { version = "~2.0.2", features = ["sha3"] }
Expand Down
5 changes: 2 additions & 3 deletions sn_node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ sn_protocol = { path = "../sn_protocol", version = "0.17.12-rc.1" }
sn_registers = { path = "../sn_registers", version = "0.4.0-rc.1" }
sn_transfers = { path = "../sn_transfers", version = "0.20.0-rc.1" }
sn_service_management = { path = "../sn_service_management", version = "0.4.0-rc.1" }
sn_evm = { path = "../sn_evm", version = "0.1" }
sn_evm = { path = "../sn_evm", version = "0.1.1-rc.1" }
thiserror = "1.0.23"
tokio = { version = "1.32.0", features = [
"io-util",
Expand All @@ -82,7 +82,7 @@ strum = { version = "0.26.2", features = ["derive"] }
color-eyre = "0.6.2"

[dev-dependencies]
evmlib = { path = "../evmlib", version = "0.1" }
evmlib = { path = "../evmlib", version = "0.1.1-rc.1" }
autonomi = { path = "../autonomi", version = "0.2.0-rc.1", features = ["registers"] }
reqwest = { version = "0.12.2", default-features = false, features = [
"rustls-tls-manual-roots",
Expand All @@ -94,7 +94,6 @@ sn_protocol = { path = "../sn_protocol", version = "0.17.12-rc.1", features = [
sn_transfers = { path = "../sn_transfers", version = "0.20.0-rc.1", features = [
"test-utils",
] }
sn_evm = { path = "../sn_evm", version = "0.1.1-rc.1" }
tempfile = "3.6.0"
# Do not specify the version field. Release process expects even the local dev deps to be published.
# Removing the version field is a workaround.
Expand Down
2 changes: 1 addition & 1 deletion sn_node_manager/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ sn_peers_acquisition = { path = "../sn_peers_acquisition", version = "0.5.4-rc.1
sn_protocol = { path = "../sn_protocol", version = "0.17.12-rc.1" }
sn_service_management = { path = "../sn_service_management", version = "0.4.0-rc.1" }
sn-releases = "0.2.6"
sn_evm = { path = "../sn_evm", version = "0.1" }
sn_evm = { path = "../sn_evm", version = "0.1.1-rc.1" }
sn_transfers = { path = "../sn_transfers", version = "0.20.0-rc.1" }
sysinfo = "0.30.12"
thiserror = "1.0.23"
Expand Down
2 changes: 1 addition & 1 deletion sn_protocol/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ sha2 = "0.10.7"
sn_build_info = { path = "../sn_build_info", version = "0.1.16-rc.1" }
sn_transfers = { path = "../sn_transfers", version = "0.20.0-rc.1" }
sn_registers = { path = "../sn_registers", version = "0.4.0-rc.1" }
sn_evm = { path = "../sn_evm", version = "0.1" }
sn_evm = { path = "../sn_evm", version = "0.1.1-rc.1" }
thiserror = "1.0.23"
tiny-keccak = { version = "~2.0.2", features = [ "sha3" ] }
tracing = { version = "~0.1.26" }
Expand Down
2 changes: 1 addition & 1 deletion test_utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ local = ["sn_peers_acquisition/local"]
bytes = { version = "1.0.1", features = ["serde"] }
color-eyre = "~0.6.2"
dirs-next = "~2.0.0"
evmlib = { path = "../evmlib", version = "0.1" }
evmlib = { path = "../evmlib", version = "0.1.1-rc.1" }
libp2p = { version = "0.54.1", features = ["identify", "kad"] }
rand = "0.8.5"
serde = { version = "1.0.133", features = ["derive"] }
Expand Down

0 comments on commit c96ceee

Please sign in to comment.