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

Commit 50fd5da

Browse files
committed
Cargo: increment crates, iota_streams 1.0.1
Signed-off-by: DyrellC <[email protected]>
1 parent 94a4061 commit 50fd5da

File tree

7 files changed

+21
-23
lines changed

7 files changed

+21
-23
lines changed

bindings/c/Cargo.toml

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "streams-c-binding"
3-
version = "1.0.0"
3+
version = "1.0.1"
44
authors = ["DyrellC <[email protected]>"]
55
edition = "2018"
66

@@ -16,7 +16,5 @@ crate-type = ["staticlib", "cdylib", "rlib"]
1616

1717
[dependencies]
1818
iota-streams = {path = "../../", default-features = false, features = ["tangle"]}
19-
cty = { version = "0.2.1" }
20-
cstr_core = { version = "0.2.2", default-features = false, features = ["alloc"] }
2119

22-
hex = "0.4.2"
20+
hex = "0.4.2"

iota-streams-app-channels/Cargo.toml

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "iota-streams-app-channels"
3-
version = "1.0.0"
3+
version = "1.0.1"
44
authors = ["Vlad Semenov <[email protected]>"]
55
edition = "2018"
66
license = "Apache-2.0/MIT"
@@ -22,10 +22,10 @@ name = "iota_streams_app_channels"
2222
path = "src/lib.rs"
2323

2424
[dependencies]
25-
iota-streams-core = { version = "0.3.0", path = "../iota-streams-core", default-features = false }
26-
iota-streams-core-edsig = { version = "0.2.0", path = "../iota-streams-core-edsig", default-features = false }
27-
iota-streams-core-keccak = { version = "0.3.0", path = "../iota-streams-core-keccak", default-features = false }
28-
iota-streams-ddml = { version = "0.2.2", path = "../iota-streams-ddml", default-features = false }
29-
iota-streams-app = { version = "1.0.0", path = "../iota-streams-app", default-features = false }
25+
iota-streams-core = { version = "0.3.1", path = "../iota-streams-core", default-features = false }
26+
iota-streams-core-edsig = { version = "0.2.1", path = "../iota-streams-core-edsig", default-features = false }
27+
iota-streams-core-keccak = { version = "0.3.1", path = "../iota-streams-core-keccak", default-features = false }
28+
iota-streams-ddml = { version = "0.2.1", path = "../iota-streams-ddml", default-features = false }
29+
iota-streams-app = { version = "1.0.1", path = "../iota-streams-app", default-features = false }
3030

3131
hex = { version = "0.4.2", default-features = false, optional = false }

iota-streams-app/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "iota-streams-app"
3-
version = "1.0.0"
3+
version = "1.0.1"
44
authors = ["Vlad Semenov <[email protected]>"]
55
edition = "2018"
66
license = "Apache-2.0/MIT"
@@ -26,9 +26,9 @@ name = "iota_streams_app"
2626
path = "src/lib.rs"
2727

2828
[dependencies]
29-
iota-streams-core = { version = "0.3.0", path = "../iota-streams-core", default-features = false }
30-
iota-streams-core-edsig = { version = "0.2.0", path = "../iota-streams-core-edsig", default-features = false }
31-
iota-streams-ddml = { version = "0.2.0", path = "../iota-streams-ddml", default-features = false }
29+
iota-streams-core = { version = "0.3.1", path = "../iota-streams-core", default-features = false }
30+
iota-streams-core-edsig = { version = "0.2.1", path = "../iota-streams-core-edsig", default-features = false }
31+
iota-streams-ddml = { version = "0.2.1", path = "../iota-streams-ddml", default-features = false }
3232

3333
# anyhow and chrono are kept in sync with versions used in iota-core
3434
chrono = { version = "0.4.11", default-features = false, optional = true }

iota-streams-core-edsig/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "iota-streams-core-edsig"
3-
version = "0.2.0"
3+
version = "0.2.1"
44
authors = ["Vlad Semenov <[email protected]>"]
55
edition = "2018"
66
license = "Apache-2.0/MIT"
@@ -17,7 +17,7 @@ name = "iota_streams_core_edsig"
1717
path = "src/lib.rs"
1818

1919
[dependencies]
20-
iota-streams-core = { version = "0.3.0", path = "../iota-streams-core", default-features = false }
20+
iota-streams-core = { version = "0.3.1", path = "../iota-streams-core", default-features = false }
2121
# TODO: move to recent versions of ed25519-dalek, x25519-dalek and curve25510-dalek
2222
ed25519-dalek = { version = "1.0.0", default-features = false, features = ["u64_backend", "rand_core", "rand"] }
2323
x25519-dalek = { version = "1.1.0", default-features = false, features = ["u64_backend"] }

iota-streams-core-keccak/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "iota-streams-core-keccak"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
authors = ["Vlad Semenov <[email protected]>"]
55
edition = "2018"
66
license = "Apache-2.0/MIT"
@@ -17,7 +17,7 @@ name = "iota_streams_core_keccak"
1717
path = "src/lib.rs"
1818

1919
[dependencies]
20-
iota-streams-core = { version = "0.3.0", path = "../iota-streams-core", default-features = false }
20+
iota-streams-core = { version = "0.3.1", path = "../iota-streams-core", default-features = false }
2121
keccak = "0.1"
2222

2323
[dev-dependencies]

iota-streams-core/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "iota-streams-core"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
authors = ["Vlad Semenov <[email protected]>"]
55
edition = "2018"
66
license = "Apache-2.0/MIT"

iota-streams-ddml/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "iota-streams-ddml"
3-
version = "0.2.2"
3+
version = "0.2.3"
44
authors = ["Vlad Semenov <[email protected]>"]
55
edition = "2018"
66
license = "Apache-2.0/MIT"
@@ -18,11 +18,11 @@ name = "iota_streams_ddml"
1818
path = "src/lib.rs"
1919

2020
[dependencies]
21-
iota-streams-core = { version = "0.3.0", path = "../iota-streams-core", default-features = false }
22-
iota-streams-core-edsig = { version = "0.2.0", path = "../iota-streams-core-edsig", default-features = false }
21+
iota-streams-core = { version = "0.3.1", path = "../iota-streams-core", default-features = false }
22+
iota-streams-core-edsig = { version = "0.2.1", path = "../iota-streams-core-edsig", default-features = false }
2323
# anyhow version is kept in sync with iota-core
2424
rand = { version = "0.7", default-features = false }
2525
hashbrown = { version = "0.8.2", default-features = false, optional = false, features = ["ahash"] }
2626

2727
[dev-dependencies]
28-
iota-streams-core-keccak = { version = "0.3.0", path = "../iota-streams-core-keccak" }
28+
iota-streams-core-keccak = { version = "0.3.1", path = "../iota-streams-core-keccak" }

0 commit comments

Comments
 (0)