Skip to content
This repository has been archived by the owner on Apr 15, 2024. It is now read-only.

Commit

Permalink
Cargo: increment crates, iota_streams 1.0.1
Browse files Browse the repository at this point in the history
Signed-off-by: DyrellC <[email protected]>
  • Loading branch information
DyrellC committed Dec 9, 2020
1 parent 94a4061 commit 50fd5da
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 23 deletions.
6 changes: 2 additions & 4 deletions bindings/c/Cargo.toml
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"

Expand All @@ -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"
12 changes: 6 additions & 6 deletions iota-streams-app-channels/Cargo.toml
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"
Expand All @@ -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 }
8 changes: 4 additions & 4 deletions iota-streams-app/Cargo.toml
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"
Expand All @@ -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 }
Expand Down
4 changes: 2 additions & 2 deletions iota-streams-core-edsig/Cargo.toml
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"
Expand All @@ -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"] }
Expand Down
4 changes: 2 additions & 2 deletions iota-streams-core-keccak/Cargo.toml
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"
Expand All @@ -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]
Expand Down
2 changes: 1 addition & 1 deletion iota-streams-core/Cargo.toml
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"
Expand Down
8 changes: 4 additions & 4 deletions iota-streams-ddml/Cargo.toml
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"
Expand All @@ -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" }

0 comments on commit 50fd5da

Please sign in to comment.