Skip to content

Commit

Permalink
Update crate versions (#253)
Browse files Browse the repository at this point in the history
  • Loading branch information
l1h3r authored May 10, 2021
1 parent 904251b commit ff32018
Show file tree
Hide file tree
Showing 11 changed files with 34 additions and 34 deletions.
4 changes: 2 additions & 2 deletions bindings/wasm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "identity-wasm"
version = "0.2.0"
version = "0.3.0"
authors = ["IOTA Stiftung"]
edition = "2018"
description = "Web Assembly bindings for the identity-rs crate."
Expand All @@ -15,7 +15,7 @@ crate-type = ["cdylib", "rlib"]

[dependencies]
console_error_panic_hook = { version = "0.1" }
identity = { version = "=0.2.0", path = "../../identity", features = ["wasm"] }
identity = { version = "=0.3.0", path = "../../identity", features = ["wasm"] }
serde = { version = "1.0", features = ["derive"] }
wasm-bindgen = { version = "0.2", features = ["serde-serialize"] }
wasm-bindgen-futures = { version = "0.4", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion bindings/wasm/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@iota/identity-wasm",
"version": "0.2.2",
"version": "0.3.0",
"description": "WASM bindings for IOTA Identity - A Self Sovereign Identity Framework implementing the DID and VC standards from W3C. To be used in Javascript/Typescript",
"repository": {
"type": "git",
Expand Down
10 changes: 5 additions & 5 deletions identity-account/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "identity-account"
version = "0.2.0"
version = "0.3.0"
authors = ["IOTA Stiftung"]
edition = "2018"
description = "Secure storage for Decentralized Identifiers and Verifiable Credentials."
Expand All @@ -14,10 +14,10 @@ homepage = "https://www.iota.org"
async-trait = { version = "0.1", default-features = false }
futures = { version = "0.3" }
hashbrown = { version = "0.9", features = ["serde"] }
identity-core = { version = "=0.2.0", path = "../identity-core" }
identity-credential = { version = "=0.2.0", path = "../identity-credential" }
identity-did = { version = "=0.2.0", path = "../identity-did" }
identity-iota = { version = "=0.2.0", path = "../identity-iota" }
identity-core = { version = "=0.3.0", path = "../identity-core" }
identity-credential = { version = "=0.3.0", path = "../identity-credential" }
identity-did = { version = "=0.3.0", path = "../identity-did" }
identity-iota = { version = "=0.3.0", path = "../identity-iota" }
itoa = { version = "0.4" }
log = { version = "0.4", default-features = false }
once_cell = { version = "1.7", default-features = false, features = ["std"] }
Expand Down
10 changes: 5 additions & 5 deletions identity-comm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "identity-comm"
version = "0.2.0"
version = "0.3.0"
authors = ["IOTA Stiftung"]
edition = "2018"
description = "An implementation of the DIDComm Messaging Specification."
Expand All @@ -11,10 +11,10 @@ keywords = ["iota", "tangle", "identity"]
homepage = "https://www.iota.org"

[dependencies]
identity-core = { path = "../identity-core", version = "=0.2.0" }
identity-credential = { path = "../identity-credential", version = "=0.2.0" }
identity-did = { path = "../identity-did", version = "=0.2.0" }
identity-iota = { path = "../identity-iota", version = "=0.2.0" }
identity-core = { path = "../identity-core", version = "=0.3.0" }
identity-credential = { path = "../identity-credential", version = "=0.3.0" }
identity-did = { path = "../identity-did", version = "=0.3.0" }
identity-iota = { path = "../identity-iota", version = "=0.3.0" }
libjose = { path = "../libjose", version = "=0.1.0" }
paste = { version = "1.0" }
serde = { version = "1.0", features = ["derive"] }
Expand Down
4 changes: 2 additions & 2 deletions identity-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "identity-core"
version = "0.2.0"
version = "0.3.0"
authors = ["IOTA Stiftung"]
edition = "2018"
description = "The core traits and types for the identity-rs library."
Expand All @@ -15,7 +15,7 @@ base64 = { version = "0.13", default-features = false, features = ["std"] }
bs58 = { version = "0.4", default-features = false, features = ["std"] }
chrono = { version = "0.4", default-features = false, features = ["clock", "std"] }
hex = { version = "0.4", default-features = false }
identity-diff = { version = "=0.2.0", path = "../identity-diff", default-features = false }
identity-diff = { version = "=0.3.0", path = "../identity-diff", default-features = false }
roaring = { version = "0.7", default-features = false }
serde = { version = "1.0", default-features = false, features = ["std", "derive"] }
serde_jcs = { version = "0.1", default-features = false }
Expand Down
6 changes: 3 additions & 3 deletions identity-credential/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "identity-credential"
version = "0.2.0"
version = "0.3.0"
authors = ["IOTA Stiftung"]
edition = "2018"
description = "An implementation of the Verfiable Credentials standard."
Expand All @@ -11,8 +11,8 @@ keywords = ["iota", "tangle", "identity"]
homepage = "https://www.iota.org"

[dependencies]
identity-core = { version = "=0.2.0", path = "../identity-core" }
identity-did = { version = "=0.2.0", path = "../identity-did" }
identity-core = { version = "=0.3.0", path = "../identity-core" }
identity-did = { version = "=0.3.0", path = "../identity-did" }
lazy_static = { version = "1.4", default-features = false }
serde = { version = "1.0", default-features = false, features = ["std", "derive"] }
thiserror = { version = "1.0", default-features = false }
Expand Down
4 changes: 2 additions & 2 deletions identity-did/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "identity-did"
version = "0.2.0"
version = "0.3.0"
authors = ["IOTA Stiftung"]
edition = "2018"
description = "An implementation of the Decentralized Identifiers standard."
Expand All @@ -13,7 +13,7 @@ homepage = "https://www.iota.org"
[dependencies]
async-trait = { version = "0.1", default-features = false }
did_url = { version = "0.1", default-features = false, features = ["std", "serde"] }
identity-core = { version = "=0.2.0", path = "../identity-core" }
identity-core = { version = "=0.3.0", path = "../identity-core" }
serde = { version = "1.0", default-features = false, features = ["alloc", "derive"] }
thiserror = { version = "1.0", default-features = false }

Expand Down
4 changes: 2 additions & 2 deletions identity-diff/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "identity-diff"
version = "0.2.0"
version = "0.3.0"
authors = ["IOTA Stiftung"]
edition = "2018"
description = "The `Diff` trait for the identity-rs library."
Expand All @@ -12,7 +12,7 @@ homepage = "https://www.iota.org"

[dependencies]
did_url = { version = "0.1", default-features = false, features = ["alloc"] }
identity-derive = { version = "=0.2.0", path = "derive" }
identity-derive = { version = "=0.3.0", path = "derive" }
serde = { version = "1.0", features = [ "derive" ] }
serde_json = { version = "1.0" }
thiserror = { version = "1.0" }
Expand Down
2 changes: 1 addition & 1 deletion identity-diff/derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "identity-derive"
version = "0.2.0"
version = "0.3.0"
authors = ["IOTA Stiftung"]
edition = "2018"
description = "Derive `Diff` support for the identity-rs library."
Expand Down
8 changes: 4 additions & 4 deletions identity-iota/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "identity-iota"
version = "0.2.0"
version = "0.3.0"
authors = ["IOTA Stiftung"]
edition = "2018"
description = "An IOTA Tangle intergration for the identity-rs library."
Expand All @@ -13,9 +13,9 @@ homepage = "https://www.iota.org"
[dependencies]
async-trait = { version = "0.1", default-features = false }
futures = { version = "0.3" }
identity-core = { version = "=0.2.0", path = "../identity-core" }
identity-credential = { version = "=0.2.0", path = "../identity-credential" }
identity-did = { version = "=0.2.0", path = "../identity-did" }
identity-core = { version = "=0.3.0", path = "../identity-core" }
identity-credential = { version = "=0.3.0", path = "../identity-credential" }
identity-did = { version = "=0.3.0", path = "../identity-did" }
lazy_static = { version = "1.4", default-features = false }
log = { version = "0.4", default-features = false }
serde = { version = "1.0", default-features = false, features = ["std", "derive"] }
Expand Down
14 changes: 7 additions & 7 deletions identity/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "identity"
version = "0.2.0"
version = "0.3.0"
authors = ["IOTA Stiftung"]
edition = "2018"
description = "Tools for working with Self-sovereign Identity."
Expand All @@ -12,12 +12,12 @@ homepage = "https://www.iota.org"
documentation = "https://identity.docs.iota.org"

[dependencies]
identity-account = { version = "=0.2.0", path = "../identity-account", optional = true }
identity-core = { version = "=0.2.0", path = "../identity-core" }
identity-credential = { version = "=0.2.0", path = "../identity-credential", optional = true }
identity-did = { version = "=0.2.0", path = "../identity-did", optional = true }
identity-iota = { version = "=0.2.0", path = "../identity-iota", optional = true }
identity-comm = { version = "=0.2.0", path = "../identity-comm", optional = true }
identity-account = { version = "=0.3.0", path = "../identity-account", optional = true }
identity-comm = { version = "=0.3.0", path = "../identity-comm", optional = true }
identity-core = { version = "=0.3.0", path = "../identity-core" }
identity-credential = { version = "=0.3.0", path = "../identity-credential", optional = true }
identity-did = { version = "=0.3.0", path = "../identity-did", optional = true }
identity-iota = { version = "=0.3.0", path = "../identity-iota", optional = true }

[dev-dependencies]
criterion = { version = "0.3" }
Expand Down

0 comments on commit ff32018

Please sign in to comment.