Skip to content

Commit

Permalink
increment version number for publish NFT library (#221)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexytsu authored Aug 18, 2023
1 parent 91b1462 commit 51f6274
Show file tree
Hide file tree
Showing 14 changed files with 90 additions and 73 deletions.
17 changes: 17 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,10 @@ members = [
]

[workspace.dependencies]
blake2b_simd = { version = "1.0.0" }
clap = { version = "3.2.12", features = ["derive"] }
cid = { version = "0.10.1", default-features = false, features = ["serde-codec"] }
fvm = { version = "^3.0.0", default-features = false }
fvm_integration_tests = "~3.1.0"
fvm_ipld_amt = { version = "0.6.0", features = ["go-interop"] }
fvm_ipld_bitfield = "0.5.4"
Expand All @@ -26,6 +29,20 @@ fvm_ipld_encoding = "0.4.0"
fvm_ipld_hamt = "0.7.0"
fvm_sdk = "~3.3.0"
fvm_shared = "~3.4.0"
serde = { version = "1.0.136", features = ["derive"] }
serde_tuple = { version = "0.5.0" }
thiserror = { version = "1.0.31" }
integer-encoding = { version = "3.0.4" }
num-traits = { version = "0.2.15" }
anyhow = { version = "1.0.56" }

# internal deps of published packages
frc42_dispatch = { version = "3.3.0", path = "./frc42_dispatch", default-features=false }
fvm_actor_utils = { version = "7.0.0", path = "./fvm_actor_utils" }

# only consumed by non-published packages
frc53_nft = { path = "./frc53_nft" }
frc46_token = { path = "./frc46_token" }

[profile.wasm]
inherits = "release"
Expand Down
2 changes: 1 addition & 1 deletion dispatch_examples/greeter/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version = "0.1.0"
edition = "2021"

[dependencies]
frc42_dispatch = { path = "../../frc42_dispatch" }
frc42_dispatch = { workspace = true }
fvm_ipld_blockstore = { workspace = true }
fvm_ipld_encoding = { workspace = true }
fvm_sdk = { workspace = true }
Expand Down
16 changes: 8 additions & 8 deletions frc46_token/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,19 +8,19 @@ repository = "https://github.com/helix-onchain/filecoin/"
edition = "2021"

[dependencies]
frc42_dispatch = { version = "3.3.0", path = "../frc42_dispatch" }
fvm_actor_utils = { version = "7.0.0", path = "../fvm_actor_utils" }
frc42_dispatch = { workspace = true }
fvm_actor_utils = { workspace = true }

anyhow = "1.0.56"
anyhow = { workspace = true }
cid = { workspace = true }
fvm_ipld_blockstore = { workspace = true }
fvm_ipld_hamt = { workspace = true }
fvm_ipld_amt = { workspace = true }
fvm_ipld_encoding = { workspace = true }
fvm_sdk = { workspace = true }
fvm_shared = { workspace = true }
num-traits = { version = "0.2.15" }
serde = { version = "1.0.136", features = ["derive"] }
serde_tuple = { version = "0.5.0" }
thiserror = { version = "1.0.31" }
integer-encoding = { version = "3.0.4" }
num-traits = { workspace = true }
serde = { workspace = true }
serde_tuple = { workspace = true }
thiserror = { workspace = true }
integer-encoding = { workspace = true }
16 changes: 8 additions & 8 deletions frc53_nft/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@

[package]
name = "frc53_nft"
version = "0.1.0"
version = "1.0.0"
edition = "2021"

[dependencies]
frc42_dispatch = { path = "../frc42_dispatch" }
fvm_actor_utils = { path = "../fvm_actor_utils" }
frc42_dispatch = { workspace = true }
fvm_actor_utils = { workspace = true }

cid = { workspace = true }
fvm_ipld_bitfield = { workspace = true }
Expand All @@ -16,8 +16,8 @@ fvm_ipld_amt = { workspace = true }
fvm_ipld_encoding = { workspace = true }
fvm_sdk = { workspace = true }
fvm_shared = { workspace = true }
integer-encoding = { version = "3.0.4" }
num-traits = { version = "0.2.15" }
serde = { version = "1.0.136", features = ["derive"] }
serde_tuple = { version = "0.5.0" }
thiserror = { version = "1.0.31" }
integer-encoding = { workspace = true }
num-traits = { workspace = true }
serde = { workspace = true }
serde_tuple = { workspace = true }
thiserror = { workspace = true }
12 changes: 6 additions & 6 deletions fvm_actor_utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ repository = "https://github.com/helix-onchain/filecoin/"
edition = "2021"

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

anyhow = "1.0.56"
anyhow = { workspace = true }
cid = { workspace = true }
fvm_ipld_blockstore = { workspace = true }
fvm_ipld_encoding = { workspace = true }
fvm_shared = { workspace = true }
fvm_sdk = { workspace = true }
num-traits = { version = "0.2.15" }
serde = { version = "1.0.136", features = ["derive"] }
serde_tuple = { version = "0.5.0" }
thiserror = { version = "1.0.31" }
num-traits = { workspace = true }
serde = { workspace = true }
serde_tuple = { workspace = true }
thiserror = { workspace = true }
6 changes: 3 additions & 3 deletions fvm_dispatch_tools/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ version = "0.1.0"
edition = "2021"

[dependencies]
blake2b_simd = { version = "1.0.0" }
clap = { version = "3.2.12", features = ["derive"] }
frc42_dispatch = { path = "../frc42_dispatch" }
blake2b_simd = { workspace = true }
clap = { workspace = true }
frc42_dispatch = { workspace = true }
16 changes: 8 additions & 8 deletions testing/integration/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,21 +5,21 @@ repository = "https://github.com/helix-collective/filecoin"
edition = "2021"

[dependencies]
frc42_dispatch = { path = "../../frc42_dispatch" }
frc46_token = { path = "../../frc46_token" }
frc53_nft = { path = "../../frc53_nft" }
fvm_actor_utils = { path = "../../fvm_actor_utils" }
frc42_dispatch = { workspace = true }
frc46_token = { workspace = true }
frc53_nft = { workspace = true }
fvm_actor_utils = { workspace = true }

anyhow = { version = "1.0.63", features = ["backtrace"] }
anyhow = { workspace = true, features = ["backtrace"] }
cid = { workspace = true }
fvm = { version = "^3.0.0", default-features = false }
fvm = { workspace = true }
fvm_integration_tests = { workspace = true }
fvm_ipld_blockstore = { workspace = true }
fvm_ipld_bitfield = { workspace = true }
fvm_ipld_encoding = { workspace = true }
fvm_shared = { workspace = true }
serde = { version = "1.0", features = ["derive"] }
serde_tuple = { version = "0.5.0" }
serde = { workspace = true }
serde_tuple = { workspace = true }

[dev-dependencies]
actors-v12 = { package = "fil_builtin_actors_bundle", git = "https://github.com/filecoin-project/builtin-actors" }
Expand Down
12 changes: 6 additions & 6 deletions testing/test_actors/actors/basic_nft_actor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,18 @@ version = "0.1.0"
edition = "2021"

[dependencies]
frc42_dispatch = { path = "../../../../frc42_dispatch" }
frc53_nft = { path = "../../../../frc53_nft" }
fvm_actor_utils = { path = "../../../../fvm_actor_utils" }
frc42_dispatch = { workspace = true }
frc53_nft = { workspace = true }
fvm_actor_utils = { workspace = true }

cid = { workspace = true }
fvm_ipld_blockstore = { workspace = true }
fvm_ipld_encoding = { workspace = true }
fvm_sdk = { workspace = true }
fvm_shared = { workspace = true }
serde = { version = "1.0.136", features = ["derive"] }
serde_tuple = { version = "0.5.0" }
thiserror = { version = "1.0.31" }
serde = { workspace = true }
serde_tuple = { workspace = true }
thiserror = { workspace = true }

[lib]
crate-type = ["cdylib"] ## cdylib is necessary for Wasm build
8 changes: 4 additions & 4 deletions testing/test_actors/actors/basic_receiving_actor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ version = "0.1.0"
edition = "2021"

[dependencies]
frc42_dispatch = { path = "../../../../frc42_dispatch" }
frc46_token = { path = "../../../../frc46_token" }
frc53_nft = { path = "../../../../frc53_nft" }
fvm_actor_utils = { path = "../../../../fvm_actor_utils" }
frc42_dispatch = { workspace = true }
frc46_token = { workspace = true }
frc53_nft = { workspace = true }
fvm_actor_utils = { workspace = true }

fvm_ipld_blockstore = { workspace = true }
fvm_ipld_encoding = { workspace = true }
Expand Down
10 changes: 5 additions & 5 deletions testing/test_actors/actors/basic_transfer_actor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,17 @@ version = "0.1.0"
edition = "2021"

[dependencies]
frc42_dispatch = { path = "../../../../frc42_dispatch" }
frc46_token = { path = "../../../../frc46_token" }
fvm_actor_utils = { path = "../../../../fvm_actor_utils" }
frc42_dispatch = { workspace = true }
frc46_token = { workspace = true }
fvm_actor_utils = { workspace = true }

cid = { workspace = true }
fvm_ipld_blockstore = { workspace = true }
fvm_ipld_encoding = { workspace = true }
fvm_sdk = { workspace = true }
fvm_shared = { workspace = true }
serde = { version = "1.0.136", features = ["derive"] }
serde_tuple = { version = "0.5.0" }
serde = { workspace = true }
serde_tuple = { workspace = true }

[lib]
crate-type = ["cdylib"] ## cdylib is necessary for Wasm build
12 changes: 6 additions & 6 deletions testing/test_actors/actors/frc46_factory_token/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,16 @@ edition = "2021"

[dependencies]
cid = { workspace = true }
frc42_dispatch = { path = "../../../../frc42_dispatch" }
frc46_token = { path = "../../../../frc46_token" }
fvm_actor_utils = { path = "../../../../fvm_actor_utils" }
frc42_dispatch = { workspace = true }
frc46_token = { workspace = true }
fvm_actor_utils = { workspace = true }
fvm_ipld_blockstore = { workspace = true }
fvm_ipld_encoding = { workspace = true }
fvm_sdk = { workspace = true }
fvm_shared = { workspace = true }
serde = { version = "1.0.136", features = ["derive"] }
serde_tuple = { version = "0.5.0" }
thiserror = { version = "1.0.31" }
serde = { workspace = true }
serde_tuple = { workspace = true }
thiserror = { workspace = true }
token_impl = { path = "token_impl" }

[lib]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ publish = false

[dependencies]
cid = { workspace = true }
frc42_dispatch = { path = "../../../../../frc42_dispatch" }
frc46_token = { path = "../../../../../frc46_token" }
fvm_actor_utils = { path = "../../../../../fvm_actor_utils" }
frc42_dispatch = { workspace = true }
frc46_token = { workspace = true }
fvm_actor_utils = { workspace = true }
fvm_ipld_blockstore = { workspace = true }
fvm_ipld_encoding = { workspace = true }
fvm_sdk = { workspace = true }
fvm_shared = { workspace = true }
serde = { version = "1.0.136", features = ["derive"] }
serde_tuple = { version = "0.5.0" }
thiserror = { version = "1.0.31" }
serde = { workspace = true }
serde_tuple = { workspace = true }
thiserror = { workspace = true }

12 changes: 6 additions & 6 deletions testing/test_actors/actors/frc46_test_actor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,18 @@ version = "0.1.0"
edition = "2021"

[dependencies]
frc46_token = { path = "../../../../frc46_token" }
frc42_dispatch = { path = "../../../../frc42_dispatch" }
frc53_nft = { path = "../../../../frc53_nft" }
fvm_actor_utils = { path = "../../../../fvm_actor_utils" }
frc46_token = { workspace = true }
frc42_dispatch = { workspace = true }
frc53_nft = { workspace = true }
fvm_actor_utils = { workspace = true }

cid = { workspace = true }
fvm_ipld_blockstore = { workspace = true }
fvm_ipld_encoding = { workspace = true }
fvm_sdk = { workspace = true }
fvm_shared = { workspace = true }
serde = { version = "1.0", features = ["derive"] }
serde_tuple = { version = "0.5.0" }
serde = { workspace = true }
serde_tuple = { workspace = true }

[lib]
crate-type = ["cdylib"] ## cdylib is necessary for Wasm build
12 changes: 6 additions & 6 deletions testing/test_actors/actors/frc53_test_actor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,18 @@ version = "0.1.0"
edition = "2021"

[dependencies]
frc46_token = { path = "../../../../frc46_token" }
fvm_actor_utils = { path = "../../../../fvm_actor_utils" }
frc42_dispatch = { path = "../../../../frc42_dispatch" }
frc53_nft = { path = "../../../../frc53_nft" }
frc46_token = { workspace = true }
fvm_actor_utils = { workspace = true }
frc42_dispatch = { workspace = true }
frc53_nft = { workspace = true }

cid = { workspace = true }
fvm_ipld_blockstore = { workspace = true }
fvm_ipld_encoding = { workspace = true }
fvm_sdk = { workspace = true }
fvm_shared = { workspace = true }
serde = { version = "1.0", features = ["derive"] }
serde_tuple = { version = "0.5.0" }
serde = { workspace = true }
serde_tuple = { workspace = true }

[lib]
crate-type = ["cdylib"] ## cdylib is necessary for Wasm build
Expand Down

0 comments on commit 51f6274

Please sign in to comment.