-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
64 lines (61 loc) · 1.83 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[workspace]
members = ["contracts/*", "integration", "packages/*"]
resolver = "2"
[workspace.package]
version = "0.1.3"
authors = [
"Kerber0x <[email protected]>",
"Nahem <[email protected]>",
"PFC <[email protected]>",
]
edition = "2021"
rust-version = "1.73.0"
license = "Apache-2.0"
homepage = "https://pfc.zone"
repository = "https://github.com/PFC-Validator/pfc-butler"
documentation = "https://github.com/PFC-Validator/pfc-butler#readme"
keywords = ["blockchain", "cosmos", "cosmwasm"]
[workspace.dependencies]
cw-ownable = "0.5"
cw-ownable-derive = "0.5.1"
cosmwasm-schema = "1.5.5"
cosmwasm-std = { version = "1.5.5", features = [
# Kuji is @ 1.2
"cosmwasm_1_2",
"iterator",
"stargate",
] }
cw-storage-plus = "1.2.0"
cosmwasm-storage = "1.5.2"
cw2 = "1.1.2"
schemars = "0.8.16"
serde = { version = "1.0.196", default-features = false, features = ["derive"] }
thiserror = { version = "1.0.56" }
treasurechest = { path = "packages/treasurechest" }
injective_auction = { path = "packages/injective_auction" }
#injective-std = {rev="42ab0c6cfdfda1ca4e69898feb1ad9ea9bd4af5e", git="https://github.com/InjectiveLabs/cw-injective"}
injective-std = "1.13.2-testnet"
cw-multi-test = { version = "0.20.0", features = ["cosmwasm_1_2"] }
pfc-whitelist = "1.5.0"
pfc-whitelist-derive = "1.5.0"
cw-item-set = "0.7.1"
cw-utils = "1.0.3"
osmosis-std-derive = "0.15.3"
prost = { version = "0.12.3", default-features = false, features = [
"prost-derive",
] }
prost-types = { version = "0.12.3", default-features = false }
protobuf = { version = "3.3.0", features = ["with-bytes"] }
getrandom = { version = "0.2", features = ["js"] }
cw-paginate-storage = "2.3.0"
semver = "1.0.23"
[profile.release]
codegen-units = 1
debug = false
debug-assertions = false
incremental = false
lto = true
opt-level = 3
overflow-checks = true
rpath = false
panic = 'abort'