generated from mintthemoon/repo-template-public
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
29 lines (26 loc) · 871 Bytes
/
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
[package]
name = "xcosm"
version = "0.0.1"
authors = ["mintthemoon <[email protected]>"]
categories = ["authentication", "config", "cryptography::cryptocurrencies", "finance", "wasm"]
edition = "2021"
keywords = ["cosmos", "cosmwasm", "cosmwasm-std", "library", "contract"]
license = "Unlicense"
readme = "README.md"
repository = "https://github.com/mintthemoon/xcosm"
description = "The CosmWasm contract toolbox."
[lib]
[features]
default = ["cosmwasm_2_0"]
cosmwasm_2_0 = ["cosmwasm-std/cosmwasm_2_0"]
[dependencies]
cosmwasm-schema = "2.1.0"
cosmwasm-std = { version = "2.1.0", features = ["cosmwasm_2_0"] }
cw-storage-plus = "2.0.0"
cw2 = "2.0.0"
derive_deref = "1.1.1"
miette = { version = "7.2.0" }
schemars = "0.8.16"
serde = { version = "1.0.197", default-features = false, features = ["derive"] }
serde_json = "1.0.125"
thiserror = { version = "1.0.58" }