-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Also adds an initial CHANGELOG for the new sn_node_launchpad crate.
- Loading branch information
Showing
21 changed files
with
103 additions
and
90 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
authors = ["MaidSafe Developers <[email protected]>"] | ||
description = "Safe Network Auditor" | ||
name = "sn_auditor" | ||
version = "0.1.7" | ||
version = "0.1.8-alpha" | ||
edition = "2021" | ||
homepage = "https://maidsafe.net" | ||
repository = "https://github.com/maidsafe/safe_network" | ||
|
@@ -24,9 +24,9 @@ dirs-next = "~2.0.0" | |
graphviz-rust = "0.9.0" | ||
serde = { version = "1.0.133", features = [ "derive", "rc" ]} | ||
serde_json = "1.0.108" | ||
sn_client = { path = "../sn_client", version = "0.105.3" } | ||
sn_logging = { path = "../sn_logging", version = "0.2.25" } | ||
sn_peers_acquisition= { path="../sn_peers_acquisition", version = "0.2.10" } | ||
sn_client = { path = "../sn_client", version = "0.105.4-alpha" } | ||
sn_logging = { path = "../sn_logging", version = "0.2.26-alpha" } | ||
sn_peers_acquisition= { path="../sn_peers_acquisition", version = "0.2.11-alpha" } | ||
tiny_http = { version="0.12", features = ["ssl-rustls"] } | ||
tracing = { version = "~0.1.26" } | ||
tokio = { version = "1.32.0", features = ["io-util", "macros", "parking_lot", "rt", "sync", "time", "fs"] } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
authors = ["MaidSafe Developers <[email protected]>"] | ||
description = "Safe Node" | ||
name = "sn_node" | ||
version = "0.105.6" | ||
version = "0.105.7-alpha" | ||
edition = "2021" | ||
license = "GPL-3.0" | ||
homepage = "https://maidsafe.net" | ||
|
@@ -49,15 +49,15 @@ rmp-serde = "1.1.1" | |
rayon = "1.8.0" | ||
self_encryption = "~0.29.0" | ||
serde = { version = "1.0.133", features = ["derive", "rc"] } | ||
sn_build_info = { path = "../sn_build_info", version = "0.1.7" } | ||
sn_peers_acquisition = { path = "../sn_peers_acquisition", version = "0.2.10" } | ||
sn_client = { path = "../sn_client", version = "0.105.3" } | ||
sn_logging = { path = "../sn_logging", version = "0.2.25" } | ||
sn_networking = { path = "../sn_networking", version = "0.14.4" } | ||
sn_protocol = { path = "../sn_protocol", version = "0.16.3" } | ||
sn_registers = { path = "../sn_registers", version = "0.3.12" } | ||
sn_transfers = { path = "../sn_transfers", version = "0.17.2" } | ||
sn_service_management = { path = "../sn_service_management", version = "0.2.4" } | ||
sn_build_info = { path = "../sn_build_info", version = "0.1.8-alpha" } | ||
sn_peers_acquisition = { path = "../sn_peers_acquisition", version = "0.2.11-alpha" } | ||
sn_client = { path = "../sn_client", version = "0.105.4-alpha" } | ||
sn_logging = { path = "../sn_logging", version = "0.2.26-alpha" } | ||
sn_networking = { path = "../sn_networking", version = "0.14.5-alpha" } | ||
sn_protocol = { path = "../sn_protocol", version = "0.16.4-alpha" } | ||
sn_registers = { path = "../sn_registers", version = "0.3.13-alpha" } | ||
sn_transfers = { path = "../sn_transfers", version = "0.17.3-alpha" } | ||
sn_service_management = { path = "../sn_service_management", version = "0.2.5-alpha" } | ||
thiserror = "1.0.23" | ||
tokio = { version = "1.32.0", features = [ | ||
"io-util", | ||
|
@@ -84,7 +84,7 @@ reqwest = { version = "0.12.2", default-features = false, features = [ | |
"rustls-tls-manual-roots", | ||
] } | ||
serde_json = "1.0" | ||
sn_protocol = { path = "../sn_protocol", version = "0.16.3", features = [ | ||
sn_protocol = { path = "../sn_protocol", version = "0.16.4-alpha", features = [ | ||
"rpc", | ||
] } | ||
tempfile = "3.6.0" | ||
|
Oops, something went wrong.