Skip to content

Commit efa94b4

Browse files
build(manifest): add missing manifest fields
1 parent 929e5e7 commit efa94b4

File tree

10 files changed

+92
-16
lines changed

10 files changed

+92
-16
lines changed

Cargo.toml

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
members = ["contracts/*", "packages/*"]
33
resolver = "2"
44

5+
[workspace.package]
6+
authors = ["AXONE"]
7+
homepage = "https://axone.xyz/"
8+
license-file = "LICENSE"
9+
510
[profile.release]
611
codegen-units = 1
712
debug = false
@@ -16,15 +21,15 @@ rpath = false
1621
[workspace.dependencies]
1722
axone-cognitarium = { path = "contracts/axone-cognitarium", features = [
1823
"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" }
2227
axone-objectarium = { path = "contracts/axone-objectarium", features = [
2328
"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" }
2833
cosmwasm-schema = "1.5.5"
2934
cosmwasm-std = { version = "1.5.5", features = ["cosmwasm_1_2"] }
3035
cosmwasm-storage = "1.5.2"

contracts/axone-cognitarium/Cargo.toml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,14 @@
11
[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"
36
edition = "2021"
7+
homepage.workspace = true
8+
license-file.workspace = true
49
name = "axone-cognitarium"
10+
readme = "README.md"
11+
repository = "https://github.com/axone-protocol/contracts/tree/main/contracts/axone-cognitarium"
512
rust-version = "1.75"
613
version = "5.0.0"
714

contracts/axone-dataverse/Cargo.toml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,14 @@
11
[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"
36
edition = "2021"
7+
homepage.workspace = true
8+
license-file.workspace = true
49
name = "axone-dataverse"
10+
readme = "README.md"
11+
repository = "https://github.com/axone-protocol/contracts/tree/main/contracts/axone-dataverse"
512
rust-version = "1.75"
613
version = "5.0.0"
714

contracts/axone-law-stone/Cargo.toml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,14 @@
11
[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"
36
edition = "2021"
7+
homepage.workspace = true
8+
license-file.workspace = true
49
name = "axone-law-stone"
10+
readme = "README.md"
11+
repository = "https://github.com/axone-protocol/contracts/tree/main/contracts/axone-law-stone"
512
rust-version = "1.75"
613
version = "5.0.0"
714

contracts/axone-objectarium/Cargo.toml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,18 @@
11
[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"
310
edition = "2021"
11+
homepage.workspace = true
12+
license-file.workspace = true
413
name = "axone-objectarium"
14+
readme = "README.md"
15+
repository = "https://github.com/axone-protocol/contracts/tree/main/contracts/axone-objectarium"
516
rust-version = "1.75"
617
version = "5.0.0"
718

packages/axone-cognitarium-client/Cargo.toml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,14 @@
11
[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"
36
edition = "2021"
7+
homepage.workspace = true
8+
license-file.workspace = true
49
name = "axone-cognitarium-client"
10+
readme = "README.md"
11+
repository = "https://github.com/axone-protocol/contracts/tree/main/packages/axone-cognitarium-client"
512
version = "5.0.0"
613

714
[dependencies]

packages/axone-logic-bindings/Cargo.toml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,14 @@
11
[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"
36
edition = "2021"
7+
homepage.workspace = true
8+
license-file.workspace = true
49
name = "axone-logic-bindings"
10+
readme = "README.md"
11+
repository = "https://github.com/axone-protocol/contracts/tree/main/packages/axone-logic-bindings"
512
version = "5.0.0"
613

714
[dependencies]

packages/axone-objectarium-client/Cargo.toml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,14 @@
11
[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"
36
edition = "2021"
7+
homepage.workspace = true
8+
license-file.workspace = true
49
name = "axone-objectarium-client"
10+
readme = "README.md"
11+
repository = "https://github.com/axone-protocol/contracts/tree/main/packages/axone-objectarium-client"
512
version = "5.0.0"
613

714
[dependencies]

packages/axone-rdf/Cargo.toml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,14 @@
11
[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"
36
edition = "2021"
7+
homepage.workspace = true
8+
license-file.workspace = true
49
name = "axone-rdf"
10+
readme = "README.md"
11+
repository = "https://github.com/axone-protocol/contracts/tree/main/packages/axone-rdf"
512
version = "5.0.0"
613

714
[dependencies]

packages/axone-wasm/Cargo.toml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,18 @@
11
[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"
310
edition = "2021"
11+
homepage.workspace = true
12+
license-file.workspace = true
413
name = "axone-wasm"
14+
readme = "README.md"
15+
repository = "https://github.com/axone-protocol/contracts/tree/main/packages/axone-wasm"
516
version = "5.0.0"
617

718
[dependencies]

0 commit comments

Comments
 (0)