This repository has been archived by the owner on Apr 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Cargo: increment crates, iota_streams 1.0.1
Signed-off-by: DyrellC <[email protected]>
- Loading branch information
Showing
7 changed files
with
21 additions
and
23 deletions.
There are no files selected for viewing
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 = "streams-c-binding" | ||
version = "1.0.0" | ||
version = "1.0.1" | ||
authors = ["DyrellC <[email protected]>"] | ||
edition = "2018" | ||
|
||
|
@@ -16,7 +16,5 @@ crate-type = ["staticlib", "cdylib", "rlib"] | |
|
||
[dependencies] | ||
iota-streams = {path = "../../", default-features = false, features = ["tangle"]} | ||
cty = { version = "0.2.1" } | ||
cstr_core = { version = "0.2.2", default-features = false, features = ["alloc"] } | ||
|
||
hex = "0.4.2" | ||
hex = "0.4.2" |
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-streams-app-channels" | ||
version = "1.0.0" | ||
version = "1.0.1" | ||
authors = ["Vlad Semenov <[email protected]>"] | ||
edition = "2018" | ||
license = "Apache-2.0/MIT" | ||
|
@@ -22,10 +22,10 @@ name = "iota_streams_app_channels" | |
path = "src/lib.rs" | ||
|
||
[dependencies] | ||
iota-streams-core = { version = "0.3.0", path = "../iota-streams-core", default-features = false } | ||
iota-streams-core-edsig = { version = "0.2.0", path = "../iota-streams-core-edsig", default-features = false } | ||
iota-streams-core-keccak = { version = "0.3.0", path = "../iota-streams-core-keccak", default-features = false } | ||
iota-streams-ddml = { version = "0.2.2", path = "../iota-streams-ddml", default-features = false } | ||
iota-streams-app = { version = "1.0.0", path = "../iota-streams-app", default-features = false } | ||
iota-streams-core = { version = "0.3.1", path = "../iota-streams-core", default-features = false } | ||
iota-streams-core-edsig = { version = "0.2.1", path = "../iota-streams-core-edsig", default-features = false } | ||
iota-streams-core-keccak = { version = "0.3.1", path = "../iota-streams-core-keccak", default-features = false } | ||
iota-streams-ddml = { version = "0.2.1", path = "../iota-streams-ddml", default-features = false } | ||
iota-streams-app = { version = "1.0.1", path = "../iota-streams-app", default-features = false } | ||
|
||
hex = { version = "0.4.2", default-features = false, optional = false } |
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-streams-app" | ||
version = "1.0.0" | ||
version = "1.0.1" | ||
authors = ["Vlad Semenov <[email protected]>"] | ||
edition = "2018" | ||
license = "Apache-2.0/MIT" | ||
|
@@ -26,9 +26,9 @@ name = "iota_streams_app" | |
path = "src/lib.rs" | ||
|
||
[dependencies] | ||
iota-streams-core = { version = "0.3.0", path = "../iota-streams-core", default-features = false } | ||
iota-streams-core-edsig = { version = "0.2.0", path = "../iota-streams-core-edsig", default-features = false } | ||
iota-streams-ddml = { version = "0.2.0", path = "../iota-streams-ddml", default-features = false } | ||
iota-streams-core = { version = "0.3.1", path = "../iota-streams-core", default-features = false } | ||
iota-streams-core-edsig = { version = "0.2.1", path = "../iota-streams-core-edsig", default-features = false } | ||
iota-streams-ddml = { version = "0.2.1", path = "../iota-streams-ddml", default-features = false } | ||
|
||
# anyhow and chrono are kept in sync with versions used in iota-core | ||
chrono = { version = "0.4.11", default-features = false, optional = 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "iota-streams-core-edsig" | ||
version = "0.2.0" | ||
version = "0.2.1" | ||
authors = ["Vlad Semenov <[email protected]>"] | ||
edition = "2018" | ||
license = "Apache-2.0/MIT" | ||
|
@@ -17,7 +17,7 @@ name = "iota_streams_core_edsig" | |
path = "src/lib.rs" | ||
|
||
[dependencies] | ||
iota-streams-core = { version = "0.3.0", path = "../iota-streams-core", default-features = false } | ||
iota-streams-core = { version = "0.3.1", path = "../iota-streams-core", default-features = false } | ||
# TODO: move to recent versions of ed25519-dalek, x25519-dalek and curve25510-dalek | ||
ed25519-dalek = { version = "1.0.0", default-features = false, features = ["u64_backend", "rand_core", "rand"] } | ||
x25519-dalek = { version = "1.1.0", default-features = false, features = ["u64_backend"] } | ||
|
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-streams-core-keccak" | ||
version = "0.3.0" | ||
version = "0.3.1" | ||
authors = ["Vlad Semenov <[email protected]>"] | ||
edition = "2018" | ||
license = "Apache-2.0/MIT" | ||
|
@@ -17,7 +17,7 @@ name = "iota_streams_core_keccak" | |
path = "src/lib.rs" | ||
|
||
[dependencies] | ||
iota-streams-core = { version = "0.3.0", path = "../iota-streams-core", default-features = false } | ||
iota-streams-core = { version = "0.3.1", path = "../iota-streams-core", default-features = false } | ||
keccak = "0.1" | ||
|
||
[dev-dependencies] | ||
|
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-streams-core" | ||
version = "0.3.0" | ||
version = "0.3.1" | ||
authors = ["Vlad Semenov <[email protected]>"] | ||
edition = "2018" | ||
license = "Apache-2.0/MIT" | ||
|
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-streams-ddml" | ||
version = "0.2.2" | ||
version = "0.2.3" | ||
authors = ["Vlad Semenov <[email protected]>"] | ||
edition = "2018" | ||
license = "Apache-2.0/MIT" | ||
|
@@ -18,11 +18,11 @@ name = "iota_streams_ddml" | |
path = "src/lib.rs" | ||
|
||
[dependencies] | ||
iota-streams-core = { version = "0.3.0", path = "../iota-streams-core", default-features = false } | ||
iota-streams-core-edsig = { version = "0.2.0", path = "../iota-streams-core-edsig", default-features = false } | ||
iota-streams-core = { version = "0.3.1", path = "../iota-streams-core", default-features = false } | ||
iota-streams-core-edsig = { version = "0.2.1", path = "../iota-streams-core-edsig", default-features = false } | ||
# anyhow version is kept in sync with iota-core | ||
rand = { version = "0.7", default-features = false } | ||
hashbrown = { version = "0.8.2", default-features = false, optional = false, features = ["ahash"] } | ||
|
||
[dev-dependencies] | ||
iota-streams-core-keccak = { version = "0.3.0", path = "../iota-streams-core-keccak" } | ||
iota-streams-core-keccak = { version = "0.3.1", path = "../iota-streams-core-keccak" } |