-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
33 lines (31 loc) · 1.34 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
[workspace]
members = [
"contracts/alliance-nft-collection",
"contracts/alliance-nft-minter",
"packages/alliance-nft-packages"
]
[workspace.package]
description = "Alliance NFT Collection dropped to the Game of Alliance players"
authors = ["Terra Money <[email protected]>"]
version = "1.1.0"
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/terra-money/alliance-nft-collection"
homepage = "https://alliance.terra.money/"
documentation = "https://docs.alliance.terra.money/"
rust-version = "1.73"
[workspace.dependencies]
cosmwasm-std = { version = "1.4.1", features = ["stargate"] }
cosmwasm-schema = "1.4.1"
cw2 = "1.1.0"
cw20 = "1.1.0"
cw721 = { version = "0.18.0" }
cw721-base = { version = "0.18.0", features = ["library"] }
schemars = "0.8.15"
cw-storage-plus = "1.1.0"
cw-utils = "1.0.2"
cw-asset = "3.1.1"
serde = { version = "1.0.190", default-features = false, features = ["derive"] }
thiserror = "1.0.50"
terra-proto-rs = { version = "4.0.2", default-features = false }
alliance-nft-packages = { path = "packages/alliance-nft-packages" }