-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
35 lines (32 loc) · 1.12 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
35
[package]
name = "candle_auction"
version = "0.1.0"
edition = "2021"
authors = ["Jacksoom <[email protected]>"]
description = "CosmWasm implementing candle auction"
license = "Apache-2.0"
repository = "https://github.com/jacksoom/candle-auction"
homepage = "https://github.com/jacksoom/candle-auction"
[lib]
crate-type = ["cdylib", "rlib"]
[features]
# for more explicit tests, cargo test --features=backtraces
backtraces = ["cosmwasm-std/backtraces"]
# use library feature to disable all instantiate/execute/query exports
library = []
[dependencies]
cosmwasm-std = "1.1.0"
cosmwasm-storage = "1.1.0"
cw-storage-plus = "0.16.0"
cw2 = "0.16.0"
cw721-base = "0.15.0"
cw721 = "0.15.0"
hex = "0.4.3"
schemars = "0.8.10"
serde = { version = "1.0.144", default-features = false, features = ["derive"] }
thiserror = "1.0.32"
unicode-segmentation = "1.9.0"
tiny-keccak = { version = "2.0.0", features = ["keccak"] }
blake2b-ref = "0.3.1"
cosmwasm-schema = "1.1.3" # A dev-dependency for CosmWasm contracts to generate JSON Schema files.
cw20 = "0.16.0" # Definition and types for the CosmWasm-20 interface