generated from okp4/template-rust
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Cargo.toml
45 lines (43 loc) · 1.24 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
[workspace]
members = ["contracts/*", "packages/*"]
resolver = "2"
[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]
axone-cognitarium = { path = "contracts/axone-cognitarium", features = [
"library",
] }
axone-cognitarium-client = { path = "packages/axone-cognitarium-client" }
axone-logic-bindings = { path = "packages/axone-logic-bindings" }
axone-objectarium = { path = "contracts/axone-objectarium", features = [
"library",
] }
axone-objectarium-client = { path = "packages/axone-objectarium-client" }
axone-rdf = { path = "packages/axone-rdf" }
axone-wasm = { path = "packages/axone-wasm" }
cosmwasm-schema = "2.1.4"
cosmwasm-std = { version = "2.1.4", features = ["cosmwasm_2_1"] }
cosmwasm-storage = "1.5.2"
cw-multi-test = "2.1.1"
cw-storage-plus = "2.0.0"
cw-utils = "2.0.0"
cw2 = "2.0.0"
iref = "3.1.3"
langtag = "0.3.4"
rdf-types = "0.18.2"
rio_api = "0.8.5"
rio_turtle = "0.8.5"
rio_xml = "0.8.5"
schemars = "0.8.21"
serde = { version = "1.0.214", default-features = false, features = ["derive"] }
serde-json-wasm = "1.0.1"
testing = { path = "packages/testing" }
thiserror = { version = "1.0.66" }