File tree 10 files changed +92
-16
lines changed
10 files changed +92
-16
lines changed Original file line number Diff line number Diff line change 2
2
members = [" contracts/*" , " packages/*" ]
3
3
resolver = " 2"
4
4
5
+ [workspace .package ]
6
+ authors = [" AXONE" ]
7
+ homepage = " https://axone.xyz/"
8
+ license-file = " LICENSE"
9
+
5
10
[profile .release ]
6
11
codegen-units = 1
7
12
debug = false
@@ -16,15 +21,15 @@ rpath = false
16
21
[workspace .dependencies ]
17
22
axone-cognitarium = { path = " contracts/axone-cognitarium" , features = [
18
23
" library" ,
19
- ] }
20
- axone-cognitarium-client = { path = " packages/axone-cognitarium-client" }
21
- axone-logic-bindings = { path = " packages/axone-logic-bindings" }
24
+ ], version = " 5.0.0 " }
25
+ axone-cognitarium-client = { path = " packages/axone-cognitarium-client" , version = " 5.0.0 " }
26
+ axone-logic-bindings = { path = " packages/axone-logic-bindings" , version = " 5.0.0 " }
22
27
axone-objectarium = { path = " contracts/axone-objectarium" , features = [
23
28
" library" ,
24
- ] }
25
- axone-objectarium-client = { path = " packages/axone-objectarium-client" }
26
- axone-rdf = { path = " packages/axone-rdf" }
27
- axone-wasm = { path = " packages/axone-wasm" }
29
+ ], version = " 5.0.0 " }
30
+ axone-objectarium-client = { path = " packages/axone-objectarium-client" , version = " 5.0.0 " }
31
+ axone-rdf = { path = " packages/axone-rdf" , version = " 5.0.0 " }
32
+ axone-wasm = { path = " packages/axone-wasm" , version = " 5.0.0 " }
28
33
cosmwasm-schema = " 1.5.5"
29
34
cosmwasm-std = { version = " 1.5.5" , features = [" cosmwasm_1_2" ] }
30
35
cosmwasm-storage = " 1.5.2"
Original file line number Diff line number Diff line change 1
1
[package ]
2
- authors = [" AXONE" ]
2
+ authors.workspace = true
3
+ categories = [" cryptography::cryptocurrencies" ]
4
+ description = " A CosmWasm Smart Contract which enables the storage and querying of Semantic data using RDF (Resource Description Framework), which represents information as semantic triples."
5
+ documentation = " https://docs.axone.xyz/contracts/okp4-cognitarium"
3
6
edition = " 2021"
7
+ homepage.workspace = true
8
+ license-file.workspace = true
4
9
name = " axone-cognitarium"
10
+ readme = " README.md"
11
+ repository = " https://github.com/axone-protocol/contracts/tree/main/contracts/axone-cognitarium"
5
12
rust-version = " 1.75"
6
13
version = " 5.0.0"
7
14
Original file line number Diff line number Diff line change 1
1
[package ]
2
- authors = [" AXONE" ]
2
+ authors.workspace = true
3
+ categories = [" cryptography::cryptocurrencies" ]
4
+ description = ' A CosmWasm Smart Contract which enables the orchestration of "Dataverses", a collection of digital resources governed by rules set by what is called a "Zone".'
5
+ documentation = " https://docs.axone.xyz/contracts/okp4-dataverse"
3
6
edition = " 2021"
7
+ homepage.workspace = true
8
+ license-file.workspace = true
4
9
name = " axone-dataverse"
10
+ readme = " README.md"
11
+ repository = " https://github.com/axone-protocol/contracts/tree/main/contracts/axone-dataverse"
5
12
rust-version = " 1.75"
6
13
version = " 5.0.0"
7
14
Original file line number Diff line number Diff line change 1
1
[package ]
2
- authors = [" AXONE" ]
2
+ authors.workspace = true
3
+ categories = [" cryptography::cryptocurrencies" ]
4
+ description = " A CosmWasm Smart Contract which aims to provide GaaS (Governance as a Service) in any Cosmos blockchains."
5
+ documentation = " https://docs.axone.xyz/contracts/okp4-law-stone"
3
6
edition = " 2021"
7
+ homepage.workspace = true
8
+ license-file.workspace = true
4
9
name = " axone-law-stone"
10
+ readme = " README.md"
11
+ repository = " https://github.com/axone-protocol/contracts/tree/main/contracts/axone-law-stone"
5
12
rust-version = " 1.75"
6
13
version = " 5.0.0"
7
14
Original file line number Diff line number Diff line change 1
1
[package ]
2
- authors = [" AXONE" ]
2
+ authors.workspace = true
3
+ categories = [
4
+ " cryptography::cryptocurrencies" ,
5
+ " data-structures" ,
6
+ " database-implementations" ,
7
+ ]
8
+ description = " A CosmWasm Smart Contract which enables the storage of arbitrary unstructured Objects in any Cosmos blockchains."
9
+ documentation = " https://docs.axone.xyz/contracts/okp4-objectarium"
3
10
edition = " 2021"
11
+ homepage.workspace = true
12
+ license-file.workspace = true
4
13
name = " axone-objectarium"
14
+ readme = " README.md"
15
+ repository = " https://github.com/axone-protocol/contracts/tree/main/contracts/axone-objectarium"
5
16
rust-version = " 1.75"
6
17
version = " 5.0.0"
7
18
Original file line number Diff line number Diff line change 1
1
[package ]
2
- authors = [" AXONE" ]
2
+ authors.workspace = true
3
+ categories = [" cryptography::cryptocurrencies" ]
4
+ description = " Package that holds components to interact with the `axone-cognitarium` contract."
5
+ documentation = " https://docs.axone.xyz/contracts/okp4-cognitarium"
3
6
edition = " 2021"
7
+ homepage.workspace = true
8
+ license-file.workspace = true
4
9
name = " axone-cognitarium-client"
10
+ readme = " README.md"
11
+ repository = " https://github.com/axone-protocol/contracts/tree/main/packages/axone-cognitarium-client"
5
12
version = " 5.0.0"
6
13
7
14
[dependencies ]
Original file line number Diff line number Diff line change 1
1
[package ]
2
- authors = [" AXONE" ]
2
+ authors.workspace = true
3
+ categories = [" cryptography::cryptocurrencies" ]
4
+ description = " Package that holds all bindings for querying the AXONE logic module."
5
+ documentation = " https://docs.axone.xyz/modules/logic"
3
6
edition = " 2021"
7
+ homepage.workspace = true
8
+ license-file.workspace = true
4
9
name = " axone-logic-bindings"
10
+ readme = " README.md"
11
+ repository = " https://github.com/axone-protocol/contracts/tree/main/packages/axone-logic-bindings"
5
12
version = " 5.0.0"
6
13
7
14
[dependencies ]
Original file line number Diff line number Diff line change 1
1
[package ]
2
- authors = [" AXONE" ]
2
+ authors.workspace = true
3
+ categories = [" cryptography::cryptocurrencies" ]
4
+ description = " Package that holds components to interact with the `axone-objectarium` contract."
5
+ documentation = " https://docs.axone.xyz/contracts/okp4-objectarium"
3
6
edition = " 2021"
7
+ homepage.workspace = true
8
+ license-file.workspace = true
4
9
name = " axone-objectarium-client"
10
+ readme = " README.md"
11
+ repository = " https://github.com/axone-protocol/contracts/tree/main/packages/axone-objectarium-client"
5
12
version = " 5.0.0"
6
13
7
14
[dependencies ]
Original file line number Diff line number Diff line change 1
1
[package ]
2
- authors = [" AXONE" ]
2
+ authors.workspace = true
3
+ categories = [" data-structures" , " parser-implementations" ]
4
+ description = " Package that holds useful components to manage with `RDF` data, typically reading / writing."
5
+ documentation = " https://docs.axone.xyz/contracts/okp4-cognitarium#model-your-data-with-rdf"
3
6
edition = " 2021"
7
+ homepage.workspace = true
8
+ license-file.workspace = true
4
9
name = " axone-rdf"
10
+ readme = " README.md"
11
+ repository = " https://github.com/axone-protocol/contracts/tree/main/packages/axone-rdf"
5
12
version = " 5.0.0"
6
13
7
14
[dependencies ]
Original file line number Diff line number Diff line change 1
1
[package ]
2
- authors = [" AXONE" ]
2
+ authors.workspace = true
3
+ categories = [
4
+ " cryptography::cryptocurrencies" ,
5
+ " parser-implementations" ,
6
+ " data-structures" ,
7
+ ]
8
+ description = " Package that holds useful components to manage with `CosmWasm` data, typically reading / writing."
9
+ documentation = " https://docs.axone.xyz/predicates/open_4#cosmwasm-uri"
3
10
edition = " 2021"
11
+ homepage.workspace = true
12
+ license-file.workspace = true
4
13
name = " axone-wasm"
14
+ readme = " README.md"
15
+ repository = " https://github.com/axone-protocol/contracts/tree/main/packages/axone-wasm"
5
16
version = " 5.0.0"
6
17
7
18
[dependencies ]
You can’t perform that action at this time.
0 commit comments