generated from okp4/template-rust
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Cargo.toml
55 lines (52 loc) · 1.63 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
[workspace]
members = ["contracts/*", "packages/*"]
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.75"
version = "7.0.0"
[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", version = "7.0.0", features = [
"library",
] }
axone-cognitarium-client = { path = "./packages/axone-cognitarium-client", version = "7.0.0" }
axone-logic-bindings = { path = "./packages/axone-logic-bindings", version = "7.0.0" }
axone-objectarium = { path = "./contracts/axone-objectarium", version = "7.0.0", features = [
"library",
] }
axone-objectarium-client = { path = "./packages/axone-objectarium-client", version = "7.0.0" }
axone-rdf = { path = "./packages/axone-rdf", version = "7.0.0" }
axone-wasm = { path = "./packages/axone-wasm", version = "7.0.0" }
cosmwasm-schema = "2.2.0"
cosmwasm-std = { version = "2.2.0", features = ["cosmwasm_2_1"] }
cosmwasm-storage = "1.5.2"
cw-multi-test = "2.2.0"
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.217", default-features = false, features = ["derive"] }
serde-json-wasm = "1.0.1"
testing = { path = "packages/testing" }
thiserror = { version = "2.0.9" }