diff --git a/crates/bindings/Cargo.toml b/crates/bindings/Cargo.toml index 03cdbdf9..b58571d4 100644 --- a/crates/bindings/Cargo.toml +++ b/crates/bindings/Cargo.toml @@ -3,8 +3,8 @@ name = "rain-metadata-bindings" version = "0.1.0" edition = "2021" description = "Solidity bindings for rain metadata." -license.workspace = true +license = "LicenseRef-DCL-1.0" repository = "https://github.com/rainlanguage/rain.metadata" [dependencies] -alloy = { workspace = true } +alloy = { version = "1.0.9", features = ["rand", "json", "json-abi"] } diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml index a1e48751..3cfaab75 100644 --- a/crates/cli/Cargo.toml +++ b/crates/cli/Cargo.toml @@ -3,7 +3,7 @@ name = "rain-metadata" version = "0.0.2-alpha.6" edition = "2021" description = "Tooling and utilities for RainLanguage metadata." -license.workspace = true +license = "LicenseRef-DCL-1.0" repository = "https://github.com/rainlanguage/rain.metadata" [features] @@ -19,7 +19,7 @@ futures = "0.3.29" once_cell = "1.18.0" strum = { version = "0.24", features = ["derive"] } serde = "1.0.192" -serde_json = { workspace = true } +serde_json = "1.0.108" itertools = "0.10.5" serde_bytes = "0.11.12" deflate = "1.0.0" @@ -27,14 +27,14 @@ inflate = "0.4.5" serde_cbor = "0.11.2" validator = { version = "0.16", features = ["derive"] } reqwest = { version = "0.11.22", features = ["json"] } -alloy = { workspace = true } +alloy = { version = "1.0.9", features = ["rand", "json", "json-abi"] } graphql_client = "0.13.0" -rain-metaboard-subgraph = { workspace = true } -rain-metadata-bindings = { workspace = true } -thiserror = { workspace = true } -alloy-ethers-typecast = { workspace = true } -url = { workspace = true } -rain-erc = { workspace = true } +rain-metaboard-subgraph = { path = "../metaboard" } +rain-metadata-bindings = { path = "../bindings" } +thiserror = "1.0.56" +alloy-ethers-typecast = { git = "https://github.com/rainlanguage/alloy-ethers-typecast", rev = "f7b5bfd0687f16c77dbfdd4905b2434793fa7885" } +url = "2.5.0" +rain-erc = { git = "https://github.com/rainlanguage/rain.erc", rev = "7b0f382f5e0788b0173c2391e09f4411f1c38300" } # json-schema schemars = { version = "0.8.12", optional = true } diff --git a/crates/metaboard/Cargo.toml b/crates/metaboard/Cargo.toml index 3fd60c2a..9524384f 100644 --- a/crates/metaboard/Cargo.toml +++ b/crates/metaboard/Cargo.toml @@ -3,21 +3,21 @@ name = "rain-metaboard-subgraph" version = "0.1.0" edition = "2021" description = "A subgraph client for the Rain Metaboard." -license.workspace = true +license = "LicenseRef-DCL-1.0" repository = "https://github.com/rainlanguage/rain.metadata" [dependencies] cynic = { version = "3" } -reqwest = { workspace = true } -thiserror = { workspace = true } -alloy = { workspace = true } -async-trait = { workspace = true } +reqwest = { version = "0.11.17", features = ["json"] } +thiserror = "1.0.56" +alloy = { version = "1.0.9", features = ["rand", "json", "json-abi"] } +async-trait = "0.1.77" [dev-dependencies] httpmock = "0.7.0" -insta = { workspace = true } -tokio = { workspace = true } -serde_json = { workspace = true } +insta = "1.34.0" +tokio = { version = "1.28.0", features = ["full"] } +serde_json = "1.0.108" [build-dependencies] cynic-codegen = { version = "3" }