Skip to content

Commit 51f6274

Browse files
authored
increment version number for publish NFT library (#221)
1 parent 91b1462 commit 51f6274

File tree

14 files changed

+90
-73
lines changed

14 files changed

+90
-73
lines changed

Cargo.toml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,10 @@ members = [
1717
]
1818

1919
[workspace.dependencies]
20+
blake2b_simd = { version = "1.0.0" }
21+
clap = { version = "3.2.12", features = ["derive"] }
2022
cid = { version = "0.10.1", default-features = false, features = ["serde-codec"] }
23+
fvm = { version = "^3.0.0", default-features = false }
2124
fvm_integration_tests = "~3.1.0"
2225
fvm_ipld_amt = { version = "0.6.0", features = ["go-interop"] }
2326
fvm_ipld_bitfield = "0.5.4"
@@ -26,6 +29,20 @@ fvm_ipld_encoding = "0.4.0"
2629
fvm_ipld_hamt = "0.7.0"
2730
fvm_sdk = "~3.3.0"
2831
fvm_shared = "~3.4.0"
32+
serde = { version = "1.0.136", features = ["derive"] }
33+
serde_tuple = { version = "0.5.0" }
34+
thiserror = { version = "1.0.31" }
35+
integer-encoding = { version = "3.0.4" }
36+
num-traits = { version = "0.2.15" }
37+
anyhow = { version = "1.0.56" }
38+
39+
# internal deps of published packages
40+
frc42_dispatch = { version = "3.3.0", path = "./frc42_dispatch", default-features=false }
41+
fvm_actor_utils = { version = "7.0.0", path = "./fvm_actor_utils" }
42+
43+
# only consumed by non-published packages
44+
frc53_nft = { path = "./frc53_nft" }
45+
frc46_token = { path = "./frc46_token" }
2946

3047
[profile.wasm]
3148
inherits = "release"

dispatch_examples/greeter/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "0.1.0"
44
edition = "2021"
55

66
[dependencies]
7-
frc42_dispatch = { path = "../../frc42_dispatch" }
7+
frc42_dispatch = { workspace = true }
88
fvm_ipld_blockstore = { workspace = true }
99
fvm_ipld_encoding = { workspace = true }
1010
fvm_sdk = { workspace = true }

frc46_token/Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,19 @@ repository = "https://github.com/helix-onchain/filecoin/"
88
edition = "2021"
99

1010
[dependencies]
11-
frc42_dispatch = { version = "3.3.0", path = "../frc42_dispatch" }
12-
fvm_actor_utils = { version = "7.0.0", path = "../fvm_actor_utils" }
11+
frc42_dispatch = { workspace = true }
12+
fvm_actor_utils = { workspace = true }
1313

14-
anyhow = "1.0.56"
14+
anyhow = { workspace = true }
1515
cid = { workspace = true }
1616
fvm_ipld_blockstore = { workspace = true }
1717
fvm_ipld_hamt = { workspace = true }
1818
fvm_ipld_amt = { workspace = true }
1919
fvm_ipld_encoding = { workspace = true }
2020
fvm_sdk = { workspace = true }
2121
fvm_shared = { workspace = true }
22-
num-traits = { version = "0.2.15" }
23-
serde = { version = "1.0.136", features = ["derive"] }
24-
serde_tuple = { version = "0.5.0" }
25-
thiserror = { version = "1.0.31" }
26-
integer-encoding = { version = "3.0.4" }
22+
num-traits = { workspace = true }
23+
serde = { workspace = true }
24+
serde_tuple = { workspace = true }
25+
thiserror = { workspace = true }
26+
integer-encoding = { workspace = true }

frc53_nft/Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11

22
[package]
33
name = "frc53_nft"
4-
version = "0.1.0"
4+
version = "1.0.0"
55
edition = "2021"
66

77
[dependencies]
8-
frc42_dispatch = { path = "../frc42_dispatch" }
9-
fvm_actor_utils = { path = "../fvm_actor_utils" }
8+
frc42_dispatch = { workspace = true }
9+
fvm_actor_utils = { workspace = true }
1010

1111
cid = { workspace = true }
1212
fvm_ipld_bitfield = { workspace = true }
@@ -16,8 +16,8 @@ fvm_ipld_amt = { workspace = true }
1616
fvm_ipld_encoding = { workspace = true }
1717
fvm_sdk = { workspace = true }
1818
fvm_shared = { workspace = true }
19-
integer-encoding = { version = "3.0.4" }
20-
num-traits = { version = "0.2.15" }
21-
serde = { version = "1.0.136", features = ["derive"] }
22-
serde_tuple = { version = "0.5.0" }
23-
thiserror = { version = "1.0.31" }
19+
integer-encoding = { workspace = true }
20+
num-traits = { workspace = true }
21+
serde = { workspace = true }
22+
serde_tuple = { workspace = true }
23+
thiserror = { workspace = true }

fvm_actor_utils/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ repository = "https://github.com/helix-onchain/filecoin/"
88
edition = "2021"
99

1010
[dependencies]
11-
frc42_dispatch = { version = "3.3.0", path = "../frc42_dispatch", default-features=false }
11+
frc42_dispatch = { workspace = true }
1212

13-
anyhow = "1.0.56"
13+
anyhow = { workspace = true }
1414
cid = { workspace = true }
1515
fvm_ipld_blockstore = { workspace = true }
1616
fvm_ipld_encoding = { workspace = true }
1717
fvm_shared = { workspace = true }
1818
fvm_sdk = { workspace = true }
19-
num-traits = { version = "0.2.15" }
20-
serde = { version = "1.0.136", features = ["derive"] }
21-
serde_tuple = { version = "0.5.0" }
22-
thiserror = { version = "1.0.31" }
19+
num-traits = { workspace = true }
20+
serde = { workspace = true }
21+
serde_tuple = { workspace = true }
22+
thiserror = { workspace = true }

fvm_dispatch_tools/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ version = "0.1.0"
44
edition = "2021"
55

66
[dependencies]
7-
blake2b_simd = { version = "1.0.0" }
8-
clap = { version = "3.2.12", features = ["derive"] }
9-
frc42_dispatch = { path = "../frc42_dispatch" }
7+
blake2b_simd = { workspace = true }
8+
clap = { workspace = true }
9+
frc42_dispatch = { workspace = true }

testing/integration/Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,21 +5,21 @@ repository = "https://github.com/helix-collective/filecoin"
55
edition = "2021"
66

77
[dependencies]
8-
frc42_dispatch = { path = "../../frc42_dispatch" }
9-
frc46_token = { path = "../../frc46_token" }
10-
frc53_nft = { path = "../../frc53_nft" }
11-
fvm_actor_utils = { path = "../../fvm_actor_utils" }
8+
frc42_dispatch = { workspace = true }
9+
frc46_token = { workspace = true }
10+
frc53_nft = { workspace = true }
11+
fvm_actor_utils = { workspace = true }
1212

13-
anyhow = { version = "1.0.63", features = ["backtrace"] }
13+
anyhow = { workspace = true, features = ["backtrace"] }
1414
cid = { workspace = true }
15-
fvm = { version = "^3.0.0", default-features = false }
15+
fvm = { workspace = true }
1616
fvm_integration_tests = { workspace = true }
1717
fvm_ipld_blockstore = { workspace = true }
1818
fvm_ipld_bitfield = { workspace = true }
1919
fvm_ipld_encoding = { workspace = true }
2020
fvm_shared = { workspace = true }
21-
serde = { version = "1.0", features = ["derive"] }
22-
serde_tuple = { version = "0.5.0" }
21+
serde = { workspace = true }
22+
serde_tuple = { workspace = true }
2323

2424
[dev-dependencies]
2525
actors-v12 = { package = "fil_builtin_actors_bundle", git = "https://github.com/filecoin-project/builtin-actors" }

testing/test_actors/actors/basic_nft_actor/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,18 @@ version = "0.1.0"
44
edition = "2021"
55

66
[dependencies]
7-
frc42_dispatch = { path = "../../../../frc42_dispatch" }
8-
frc53_nft = { path = "../../../../frc53_nft" }
9-
fvm_actor_utils = { path = "../../../../fvm_actor_utils" }
7+
frc42_dispatch = { workspace = true }
8+
frc53_nft = { workspace = true }
9+
fvm_actor_utils = { workspace = true }
1010

1111
cid = { workspace = true }
1212
fvm_ipld_blockstore = { workspace = true }
1313
fvm_ipld_encoding = { workspace = true }
1414
fvm_sdk = { workspace = true }
1515
fvm_shared = { workspace = true }
16-
serde = { version = "1.0.136", features = ["derive"] }
17-
serde_tuple = { version = "0.5.0" }
18-
thiserror = { version = "1.0.31" }
16+
serde = { workspace = true }
17+
serde_tuple = { workspace = true }
18+
thiserror = { workspace = true }
1919

2020
[lib]
2121
crate-type = ["cdylib"] ## cdylib is necessary for Wasm build

testing/test_actors/actors/basic_receiving_actor/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ version = "0.1.0"
44
edition = "2021"
55

66
[dependencies]
7-
frc42_dispatch = { path = "../../../../frc42_dispatch" }
8-
frc46_token = { path = "../../../../frc46_token" }
9-
frc53_nft = { path = "../../../../frc53_nft" }
10-
fvm_actor_utils = { path = "../../../../fvm_actor_utils" }
7+
frc42_dispatch = { workspace = true }
8+
frc46_token = { workspace = true }
9+
frc53_nft = { workspace = true }
10+
fvm_actor_utils = { workspace = true }
1111

1212
fvm_ipld_blockstore = { workspace = true }
1313
fvm_ipld_encoding = { workspace = true }

testing/test_actors/actors/basic_transfer_actor/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,17 @@ version = "0.1.0"
44
edition = "2021"
55

66
[dependencies]
7-
frc42_dispatch = { path = "../../../../frc42_dispatch" }
8-
frc46_token = { path = "../../../../frc46_token" }
9-
fvm_actor_utils = { path = "../../../../fvm_actor_utils" }
7+
frc42_dispatch = { workspace = true }
8+
frc46_token = { workspace = true }
9+
fvm_actor_utils = { workspace = true }
1010

1111
cid = { workspace = true }
1212
fvm_ipld_blockstore = { workspace = true }
1313
fvm_ipld_encoding = { workspace = true }
1414
fvm_sdk = { workspace = true }
1515
fvm_shared = { workspace = true }
16-
serde = { version = "1.0.136", features = ["derive"] }
17-
serde_tuple = { version = "0.5.0" }
16+
serde = { workspace = true }
17+
serde_tuple = { workspace = true }
1818

1919
[lib]
2020
crate-type = ["cdylib"] ## cdylib is necessary for Wasm build

0 commit comments

Comments
 (0)