Skip to content
Open
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ overflow-checks = true # Disable integer overflow checks.

[workspace.dependencies]
cosmwasm-schema = "2.1.1"
cosmwasm-std = { version = "2.1.1", features = ["stargate", "cosmwasm_2_0"] }
cosmwasm-std = { version = "2.1.1", features = ["cosmwasm_2_0"] }
cw2 = "2.0.0"
cw-storage-plus = "2.0.0"
cw-utils = "2.0.0"
Expand All @@ -29,6 +29,6 @@ rsa = { version = "0.9.2" }
getrandom = { version = "0.2.10", features = ["custom"] }
p256 = {version = "0.13.2", features = ["ecdsa-core", "arithmetic", "serde"]}
prost = {version = "0.13.1", default-features = false, features = ["prost-derive"]}
cosmos-sdk-proto = {git = "https://github.com/burnt-labs/cosmos-rust.git", rev = "ba87a886e16f24056e5d2e0c2e07fc958f551a5e", default-features = false, features = ["std", "cosmwasm", "xion"]}
cosmos-sdk-proto = {git = "https://github.com/burnt-labs/cosmos-rust.git", rev = "53887487c978c5fef6aa064a36f81b23ddb4ee03", default-features = false, features = ["std", "cosmwasm", "xion", "tokenfactory"]}
prost-types = "0.13.1"
pbjson-types = "0.7.0"
18 changes: 18 additions & 0 deletions contracts/tf20/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
[package]
name = "tf20"
version = "0.1.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
cosmwasm-schema = { workspace = true }
cosmwasm-std = { workspace = true }
cw2 = { workspace = true }
cw-storage-plus = { workspace = true }
cw-utils = { workspace = true}
cosmos-sdk-proto = {workspace = true}
cw20 = "2.0.0"
cw20-base = { version = "2.0.0", features = ["library"] }
cw-controllers = "2.0.0"
thiserror = { workspace = true }
Loading