diff --git a/Cargo.toml b/Cargo.toml index 3dbe28fe..93335435 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,30 +2,30 @@ members = ["contracts/*", "packages/*"] [workspace.dependencies] +cosmwasm-crypto = "1.5.2" cosmwasm-schema = "1.5.2" cosmwasm-std = { version = "1.5.2", features = ["cosmwasm_1_4"] } cosmwasm-storage = "1.5.2" -cosmwasm-crypto = "1.5.2" cw-multi-test = "0.20.0" cw-storage-plus = "1.2.0" cw-utils = "1.0.3" cw2 = "1.1.1" +iref = "3.1.3" +langtag = "0.3.4" okp4-cognitarium = { path = "contracts/okp4-cognitarium", features = [ "library", ] } +okp4-cognitarium-client = { path = "packages/okp4-cognitarium-client" } okp4-logic-bindings = { path = "packages/okp4-logic-bindings" } okp4-objectarium = { path = "contracts/okp4-objectarium", features = [ "library", ] } okp4-objectarium-client = { path = "packages/okp4-objectarium-client" } -okp4-cognitarium-client = { path = "packages/okp4-cognitarium-client" } okp4-rdf = { path = "packages/okp4-rdf" } +rdf-types = "0.18.2" rio_api = "0.8.4" rio_turtle = "0.8.4" rio_xml = "0.8.4" -rdf-types = "0.18.2" -iref = "3.1.3" -langtag = "0.3.4" schemars = "0.8.16" serde = { version = "1.0.196", default-features = false, features = ["derive"] } serde-json-wasm = "1.0.1" diff --git a/contracts/okp4-dataverse/Cargo.toml b/contracts/okp4-dataverse/Cargo.toml index e2475481..05bb321b 100644 --- a/contracts/okp4-dataverse/Cargo.toml +++ b/contracts/okp4-dataverse/Cargo.toml @@ -28,29 +28,29 @@ panic = 'abort' rpath = false [dependencies] +bs58 = "0.5.0" +cosmwasm-crypto.workspace = true cosmwasm-schema.workspace = true cosmwasm-std.workspace = true cosmwasm-storage.workspace = true -cosmwasm-crypto.workspace = true cw-storage-plus.workspace = true cw-utils.workspace = true cw2.workspace = true itertools = "0.12.1" +multibase = "0.9.1" okp4-cognitarium.workspace = true okp4-rdf.workspace = true rio_api.workspace = true +rio_turtle.workspace = true schemars.workspace = true serde.workspace = true -thiserror.workspace = true -rio_turtle.workspace = true -bs58 = "0.5.0" sha2 = "0.10.8" -multibase = "0.9.1" +thiserror.workspace = true unsigned-varint = "0.8.0" [dev-dependencies] -cw-multi-test.workspace = true base64 = "0.21.7" +cw-multi-test.workspace = true url = "2.5.0" [features] diff --git a/packages/okp4-rdf/Cargo.toml b/packages/okp4-rdf/Cargo.toml index ac5c662f..6c01625a 100644 --- a/packages/okp4-rdf/Cargo.toml +++ b/packages/okp4-rdf/Cargo.toml @@ -7,9 +7,9 @@ version = "3.0.0" [dependencies] base16ct = { version = "0.2.0", features = ["alloc"] } cosmwasm-std.workspace = true +itertools = "0.12.0" rio_api.workspace = true rio_turtle.workspace = true rio_xml.workspace = true sha2 = "0.10.8" thiserror.workspace = true -itertools = "0.12.0"