-
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e48950c
commit b4c4742
Showing
5 changed files
with
15 additions
and
6 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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "internet2" | ||
version = "0.8.0-beta.1" | ||
version = "0.8.0-rc.1" | ||
license = "Apache-2.0" | ||
authors = ["Dr. Maxim Orlovsky <[email protected]>"] | ||
description = "Rust implementation for the stack of Internet2 protocols" | ||
|
@@ -31,7 +31,7 @@ required-features = ["keygen"] | |
amplify = "3.12.0" | ||
strict_encoding = { version = "1.8.1", default-features = false, features = ["derive"] } | ||
lightning_encoding = "0.7.1" | ||
inet2_addr = { version = "0.8.0-rc.1", features = ["strict_encoding", "stringly_conversions"], path = "./addr" } | ||
inet2_addr = { version = "0.8.0-rc.1", features = ["strict_encoding", "lightning_encoding", "stringly_conversions"], path = "./addr" } | ||
inet2_derive = { version = "0.8.0-alpha.1", default-features = false, optional = true, path = "./derive" } | ||
# Dependencies on core rust-bitcoin & cryptography | ||
# ------------------------------------------------ | ||
|
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "inet2_addr" | ||
version = "0.8.0-rc.1" | ||
version = "0.8.0-rc.2" | ||
license = "Apache-2.0" | ||
authors = ["Dr. Maxim Orlovsky <[email protected]>"] | ||
description = "Internet2 addresses with support for Tor v3" | ||
|
@@ -19,6 +19,7 @@ path = "src/lib.rs" | |
[dependencies] | ||
amplify = "3.12.0" | ||
strict_encoding = { version = "1.8.1", optional = true } | ||
lightning_encoding = { version = "0.7.1", optional = true } | ||
stringly_conversions_crate = { package = "stringly_conversions", version = "0.1.1", optional = true, features = ["alloc"] } | ||
torut = { version = "0.2.1", optional = true } | ||
secp256k1 = "0.22.1" | ||
|
@@ -32,7 +33,7 @@ serde_yaml = { version = "0.8", optional = true } | |
toml = { version = "0.5", optional = true } | ||
|
||
[features] | ||
all = ["serde", "tor", "parse_arg", "stringly_conversions", "strict_encoding", "keygen"] | ||
all = ["serde", "tor", "parse_arg", "stringly_conversions", "strict_encoding", "lightning_encoding", "keygen"] | ||
default = ["stringly_conversions"] | ||
serde = ["serde_crate", "torut/serialize", | ||
"serde_yaml", "serde_json", "toml", | ||
|
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