-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathCargo.toml
More file actions
55 lines (50 loc) · 1.28 KB
/
Cargo.toml
File metadata and controls
55 lines (50 loc) · 1.28 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[workspace]
members = ["contracts/*", "packages/*", "scripts"]
resolver = "2"
[workspace.package]
authors = ["AXONE"]
edition = "2021"
homepage = "https://axone.xyz/"
keywords = ["cosmwasm", "blockchain"]
license = "BSD-3-Clause"
repository = "https://github.com/axone-protocol/contracts"
rust-version = "1.85"
[profile.release]
codegen-units = 1
debug = false
debug-assertions = false
incremental = false
lto = true
opt-level = 3
overflow-checks = true
panic = 'abort'
rpath = false
[workspace.dependencies]
cosmwasm-schema = "2.2.2"
cosmwasm-std = { version = "2.2.2", features = ["cosmwasm_2_2"] }
cw-asset = "4.0.0"
cw-controllers = "2.0.0"
cw-storage-plus = "2.0.0"
schemars = "0.8"
serde = { version = "1.0.228", default-features = false, features = ["derive"] }
thiserror = "2.0.17"
# Abstract SDK dependencies
abstract-adapter = "=0.26.1"
abstract-app = "=0.26.1"
abstract-client = "=0.26.1"
abstract-interface = "=0.26.1"
abstract-standalone = "=0.26.1"
abstract-std = "=0.26.1"
cw-orch = { version = "0.28.0", features = ["daemon"] }
# Additional dependencies for abstract contracts
anyhow = "1.0"
clap = { version = "4.5.53" }
const_format = "0.2.33"
dotenv = "0.15.0"
env_logger = "0.11.5"
getset = "0.1.6"
lazy_static = "1.4.0"
log = "0.4.29"
logos = "0.16.0"
semver = "1.0"
speculoos = "0.11.0"