-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
34 lines (32 loc) · 1.27 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[workspace]
members = [
"hub",
"seat"
]
[workspace.dependencies]
cosmwasm-schema = "1.1.3"
cosmwasm-std = { version = "1.1.3", features = ["staking"] }
cosmwasm-storage = "1.1.3"
cw-storage-plus = "0.16.0"
cw2 = "0.15.1"
schemars = "0.8.10"
serde = { version = "1.0.145", default-features = false, features = ["derive"] }
serde_json = "1.0.87"
thiserror = { version = "1.0.31" }
burnt-glue = "0.2.2"
semver = "1.0.14"
cw721 = "0.16.0"
cw721-base = { version = "0.16.0", features = ["library"] }
ownable = { git = "https://github.com/burnt-labs/burnt-cw-std" }
metadata = { git = "https://github.com/burnt-labs/burnt-cw-std" }
token = { git = "https://github.com/burnt-labs/burnt-cw-std" }
sellable = { git = "https://github.com/burnt-labs/burnt-cw-std" }
redeemable = { git = "https://github.com/burnt-labs/burnt-cw-std" }
sales = { git = "https://github.com/burnt-labs/burnt-cw-std" }
[patch.crates-io]
ownable = { git = "https://github.com/burnt-labs/burnt-cw-std" }
metadata = { git = "https://github.com/burnt-labs/burnt-cw-std" }
token = { git = "https://github.com/burnt-labs/burnt-cw-std" }
sellable = { git = "https://github.com/burnt-labs/burnt-cw-std" }
redeemable = { git = "https://github.com/burnt-labs/burnt-cw-std" }
sales = { git = "https://github.com/burnt-labs/burnt-cw-std" }