Skip to content

Commit

Permalink
fix: require rpc from proto
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuef committed Mar 14, 2024
1 parent 884f5a8 commit c631fd3
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions sn_service_management/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,16 @@ version = "0.1.0"
[dependencies]
async-trait = "0.1"
dirs-next = "2.0.0"
libp2p = { version="0.53", features = ["kad"]}
libp2p = { version = "0.53", features = ["kad"] }
libp2p-identity = { version = "0.2.7", features = ["rand"] }
prost = { version = "0.9" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
semver = "1.0.20"
service-manager = "0.6.0"
sn_protocol = { path = "../sn_protocol", version = "0.15.4" }
sn_protocol = { path = "../sn_protocol", version = "0.15.4", features = [
"rpc",
] }
sysinfo = "0.29.10"
thiserror = "1.0.23"
tokio = { version = "1.32.0", features = ["time"] }
Expand Down

0 comments on commit c631fd3

Please sign in to comment.