-
Notifications
You must be signed in to change notification settings - Fork 60
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
Showing
22 changed files
with
144 additions
and
114 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
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
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 = "iota_stronghold" | ||
version = "0.4.1" | ||
version = "0.5.0" | ||
authors = [ | ||
"IOTA Stiftung", | ||
"tensor-programming <[email protected]>" | ||
|
@@ -14,6 +14,9 @@ categories = [ "security" ] | |
homepage = "https://stronghold.docs.iota.org" | ||
repository = "https://github.com/iotaledger/stronghold.rs" | ||
|
||
[package.metadata.docs.rs] | ||
all-features = true | ||
|
||
[dependencies] | ||
bincode = "1.3" | ||
serde = { version = "1.0", features = [ "derive" ] } | ||
|
@@ -24,49 +27,45 @@ thiserror = "1.0" | |
futures = { version = "0.3", optional = true } | ||
actix = "0.12" | ||
|
||
[dependencies.stronghold_engine] | ||
path = "../engine" | ||
version = "0.4" | ||
[dependencies.stronghold_engine] | ||
path = "../engine" | ||
version = "0.4" | ||
|
||
[dependencies.iota-crypto] | ||
version = "0.7.0" | ||
features = [ | ||
"random", | ||
"ed25519", | ||
"sha", | ||
"hmac", | ||
"bip39-en", | ||
"slip10", | ||
"chacha" | ||
[dependencies.iota-crypto] | ||
version = "0.7.0" | ||
features = [ | ||
"random", | ||
"ed25519", | ||
"sha", | ||
"hmac", | ||
"bip39-en", | ||
"slip10", | ||
"chacha" | ||
] | ||
|
||
[dependencies.stronghold-p2p] | ||
path = "../p2p" | ||
version = "0.3" | ||
optional = true | ||
[dependencies.stronghold-p2p] | ||
path = "../p2p" | ||
version = "0.3" | ||
optional = true | ||
|
||
[dependencies.stronghold-utils] | ||
path = "../utils" | ||
version = "0.3" | ||
[dependencies.stronghold-utils] | ||
path = "../utils" | ||
version = "0.3" | ||
|
||
[features] | ||
p2p = ["stronghold-p2p", "futures"] | ||
p2p = [ "stronghold-p2p", "futures" ] | ||
|
||
[dev-dependencies] | ||
hex = "0.4.2" | ||
criterion = { version = "0.3.3", features = ["async_tokio"] } | ||
criterion = { version = "0.3.3", features = [ "async_tokio" ] } | ||
clap = { version = "3.0.0-beta.1", features = [ "yaml" ] } | ||
rand = "0.8.3" | ||
tokio = {version = "1.9", features = ["rt-multi-thread"] } | ||
tokio = { version = "1.9", features = [ "rt-multi-thread" ] } | ||
|
||
[[example]] | ||
name = "p2p" | ||
required-features = ["p2p"] | ||
|
||
required-features = [ "p2p" ] | ||
|
||
[[bench]] | ||
name = "benchmark" | ||
harness = false | ||
|
||
[package.metadata.docs.rs] | ||
all-features = true |
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "stronghold-derive" | ||
version = "0.2.0" | ||
version = "0.3.0" | ||
authors = [ | ||
"IOTA Stiftung", | ||
"tensor-programming <[email protected]>" | ||
|
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "stronghold_engine" | ||
version = "0.4.0" | ||
version = "0.5.0" | ||
authors = [ | ||
"IOTA Stiftung", | ||
"tensorprogramming <[email protected]>" | ||
|
@@ -26,18 +26,18 @@ paste = "1.0.1" | |
once_cell = "1.4" | ||
serde = { version = "1.0", features = [ "derive" ] } | ||
|
||
[dependencies.stronghold-runtime] | ||
path = "runtime" | ||
version = "0.3" | ||
[dependencies.stronghold-runtime] | ||
path = "runtime" | ||
version = "0.4" | ||
|
||
[dependencies.digest] | ||
version = "0.9.0" | ||
optional = true | ||
default-features = false | ||
[dependencies.digest] | ||
version = "0.9.0" | ||
optional = true | ||
default-features = false | ||
|
||
[dependencies.iota-crypto] | ||
version = "0.7.0" | ||
features = [ "random", "chacha", "hmac", "sha", "x25519", "blake2b" ] | ||
[dependencies.iota-crypto] | ||
version = "0.7.0" | ||
features = [ "random", "chacha", "hmac", "sha", "x25519", "blake2b" ] | ||
|
||
[dev-dependencies] | ||
tempfile = "3.1.0" | ||
|
@@ -46,6 +46,6 @@ proptest = "1.0.0" | |
criterion = "0.3.3" | ||
json = "0.12" | ||
|
||
[dev-dependencies.stronghold-utils] | ||
path = "../utils" | ||
version = "0.3" | ||
[dev-dependencies.stronghold-utils] | ||
path = "../utils" | ||
version = "0.3" |
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "stronghold-runtime" | ||
version = "0.3.0" | ||
version = "0.4.0" | ||
authors = [ | ||
"IOTA Stiftung", | ||
"tensor-programming <[email protected]>" | ||
|
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# Changelog | ||
|
||
## \[0.3.1] | ||
|
||
- - remove riker as dependency from utils. | ||
- Bumped due to a bump in stronghold-utils. | ||
- [34af5797](https://www.github.com/iotaledger/stronghold.rs/commit/34af5797df675912d9a78ea6a673b8a535ce1f91) Fix/remove riker from utils ([#252](https://www.github.com/iotaledger/stronghold.rs/pull/252)) on 2021-08-27 |
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,10 +1,7 @@ | ||
[package] | ||
name = "stronghold-p2p" | ||
version = "0.3.0" | ||
authors = [ | ||
"IOTA Stiftung", | ||
"Elena Frank <[email protected]" | ||
] | ||
version = "0.3.1" | ||
authors = [ "IOTA Stiftung", "Elena Frank <[email protected]" ] | ||
edition = "2018" | ||
license = "Apache-2.0" | ||
readme = "README.md" | ||
|
@@ -16,21 +13,21 @@ name = "p2p" | |
|
||
[dependencies] | ||
futures = "0.3" | ||
libp2p = { version = "0.39", default-features = false, features = ["noise", "yamux"] } | ||
libp2p = { version = "0.39", default-features = false, features = [ "noise", "yamux" ] } | ||
serde = { version = "1.0", default-features = false, features = [ "alloc", "derive" ] } | ||
serde_json = { version = "1.0", default-features = false, features = [ "alloc" ] } | ||
smallvec = "1.6.1" | ||
stronghold-derive = { path = "../derive", version = "0.2.0" } | ||
tokio = { version = "1.10", default-features = false, features = ["rt", "sync"] } | ||
tokio = { version = "1.10", default-features = false, features = [ "rt", "sync" ] } | ||
wasm-timer = "0.2.5" | ||
|
||
[features] | ||
default = [ "mdns", "relay", "tcp-transport"] | ||
mdns = ["libp2p/mdns"] | ||
relay = ["libp2p/relay"] | ||
tcp-transport = ["libp2p/tcp-tokio", "libp2p/dns-tokio", "libp2p/websocket"] | ||
default = [ "mdns", "relay", "tcp-transport" ] | ||
mdns = [ "libp2p/mdns" ] | ||
relay = [ "libp2p/relay" ] | ||
tcp-transport = [ "libp2p/tcp-tokio", "libp2p/dns-tokio", "libp2p/websocket" ] | ||
|
||
[dev-dependencies] | ||
rand = "0.8.3" | ||
tokio = {version = "1.10", features = ["time", "macros"]} | ||
libp2p = { version = "0.39", default-features = false, features = ["tcp-tokio"] } | ||
tokio = { version = "1.10", features = [ "time", "macros" ] } | ||
libp2p = { version = "0.39", default-features = false, features = [ "tcp-tokio" ] } |
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 @@ workspace = { } | |
|
||
[package] | ||
name = "commandline" | ||
version = "0.1.2" | ||
version = "0.1.3" | ||
authors = [ | ||
"IOTA Stiftung", | ||
"tensor-programming <[email protected]>" | ||
|
@@ -18,9 +18,9 @@ bincode = "1.3.1" | |
serde = { version = "1.0.114", features = [ "derive" ] } | ||
actix = { version = "0.12.0" } | ||
|
||
[dependencies.iota_stronghold] | ||
path = "../../client/" | ||
version = "0.4" | ||
[dependencies.iota_stronghold] | ||
path = "../../client/" | ||
version = "0.4" | ||
|
||
[[bin]] | ||
name = "stronghold" | ||
|
Oops, something went wrong.