Skip to content

Commit 4806ccb

Browse files
committed
chore: Update dependencies and SDK versions
1 parent 6ddb675 commit 4806ccb

File tree

10 files changed

+13
-13
lines changed

10 files changed

+13
-13
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ members = [
99
exclude = ["examples/"]
1010

1111
[workspace.package]
12-
version = "2.0.4"
12+
version = "2.0.5"
1313

1414
# Special triple # comment for ci.
1515
[patch.crates-io]

examples/adder/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ crate-type = ["cdylib"]
1111
unc-sdk = { path = "../../unc-sdk" }
1212

1313
[dev-dependencies]
14-
utility-workspaces = { version = "0.9.1", default-features = false, features = ["install"] }
14+
utility-workspaces = { version = "0.12.4", default-features = false, features = ["install"] }
1515
serde_json = "1.0"
1616
tokio = { version = "1.14", features = ["full"] }
1717
anyhow = "1.0"

examples/callback-results/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ crate-type = ["cdylib"]
1111
unc-sdk = { path = "../../unc-sdk" }
1212

1313
[dev-dependencies]
14-
utility-workspaces = { version = "0.9.1", default-features = false, features = ["install"] }
14+
utility-workspaces = { version = "0.12.4", default-features = false, features = ["install"] }
1515
serde_json = "1.0"
1616
tokio = { version = "1.14", features = ["full"] }
1717
anyhow = "1.0"

examples/cross-contract-calls/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ edition = "2021"
88
anyhow = "1.0"
99
unc-sdk = { path = "../../unc-sdk" }
1010
serde_json = "1.0"
11-
test-case = "2.0"
11+
test-case = "3"
1212
tokio = { version = "1.14", features = ["full"] }
13-
utility-workspaces = { version = "0.9.1", default-features = false, features = ["install"] }
13+
utility-workspaces = { version = "0.12.4", default-features = false, features = ["install"] }
1414

1515
cross-contract-high-level = { path = "./high-level" }
1616
cross-contract-low-level = { path = "./low-level" }

examples/factory-contract/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ edition = "2021"
88
anyhow = "1.0"
99
test-case = "2.0"
1010
tokio = { version = "1.14", features = ["full"] }
11-
utility-workspaces = { version = "0.9.1", default-features = false, features = ["install"] }
11+
utility-workspaces = { version = "0.12.4", default-features = false, features = ["install"] }
1212

1313
[profile.release]
1414
codegen-units = 1

examples/fungible-token/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ edition = "2021"
88
anyhow = "1.0"
99
unc-sdk = { path = "../../unc-sdk", features = ["unit-testing"] }
1010
tokio = { version = "1.14", features = ["full"] }
11-
utility-workspaces = { version = "0.9.1", default-features = false, features = ["install"] }
11+
utility-workspaces = { version = "0.12.4", default-features = false, features = ["install"] }
1212

1313
[profile.release]
1414
codegen-units = 1

examples/lockable-fungible-token/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ unc-sdk = { path = "../../unc-sdk", features = ["legacy"] }
1414
anyhow = "1.0"
1515
tokio = { version = "1.14", features = ["full"] }
1616
unc-sdk = { path = "../../unc-sdk", features = ["unit-testing"] }
17-
utility-workspaces = { version = "0.9.1", default-features = false, features = ["install"] }
17+
utility-workspaces = { version = "0.12.4", default-features = false, features = ["install"] }
1818

1919
[profile.release]
2020
codegen-units = 1

examples/non-fungible-token/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ anyhow = "1.0"
99
unc-contract-standards = { path = "../../unc-contract-standards" }
1010
unc-sdk = { path = "../../unc-sdk" }
1111
tokio = { version = "1.14", features = ["full"] }
12-
utility-workspaces = { version = "0.9.1", default-features = false, features = ["install"] }
12+
utility-workspaces = { version = "0.12.4", default-features = false, features = ["install"] }
1313

1414
[profile.release]
1515
codegen-units = 1

unc-contract-standards/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@ authors = ["Utility Inc <hello@utnet.org>"]
55
edition = "2021"
66
license = "MIT OR Apache-2.0"
77
categories = ["wasm"]
8-
repository = "https://github.com/utility/utility-sdk-rs"
8+
repository = "https://github.com/utnet-org/utility-sdk-rs"
99
homepage = "https://unc-sdk.io"
1010
documentation = "https://docs.rs/unc-contract-standards"
1111
description = """
1212
Utility smart contracts standard library.
1313
"""
1414

1515
[dependencies]
16-
unc-sdk = { path = "../unc-sdk", version = "2.0.4", default-features = false, features = ["legacy"] }
16+
unc-sdk = { path = "../unc-sdk", version = "2.0.5", default-features = false, features = ["legacy"] }
1717

1818
[dev-dependencies]
1919
unc-sdk = { path = "../unc-sdk", default-features = false, features = ["unit-testing"] }

unc-sdk/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ required-features = ["abi", "unstable"]
2121
# Provide unc_bidgen macros.
2222
serde = { version = "1", features = ["derive"] }
2323
serde_json = "1"
24-
unc-sdk-macros = { path = "../unc-sdk-macros", version = "2.0.4" }
25-
unc-sys = { path = "../unc-sys", version = "2.0.4" }
24+
unc-sdk-macros = { path = "../unc-sdk-macros", version = "2.0.5" }
25+
unc-sys = { path = "../unc-sys", version = "2.0.5" }
2626
base64 = "0.22.0"
2727
borsh = { version = "1.0.0", features = ["derive"] }
2828
bs58 = "0.5"

0 commit comments

Comments
 (0)