cargo.toml fixes

This commit is contained in:
hinto.janai 2024-11-28 09:41:31 -05:00
parent 7b31745db3
commit 7e005012ed
No known key found for this signature in database
GPG key ID: D47CE05FA175A499
6 changed files with 22 additions and 22 deletions

12
Cargo.lock generated
View file

@ -799,15 +799,17 @@ name = "cuprate-constants"
version = "0.1.0" version = "0.1.0"
[[package]] [[package]]
name = "cuprate-criterion-database" name = "cuprate-criterion-blockchain"
version = "0.0.0" version = "0.0.0"
dependencies = [ dependencies = [
"criterion", "criterion",
"cuprate-blockchain", "cuprate-blockchain",
"cuprate-database",
"cuprate-helper", "cuprate-helper",
"cuprate-test-utils",
"cuprate-types",
"function_name", "function_name",
"rand", "rand",
"serde_json",
"tempfile", "tempfile",
] ]
@ -821,17 +823,15 @@ dependencies = [
] ]
[[package]] [[package]]
name = "cuprate-criterion-blockchain" name = "cuprate-criterion-database"
version = "0.0.0" version = "0.0.0"
dependencies = [ dependencies = [
"criterion", "criterion",
"cuprate-blockchain", "cuprate-blockchain",
"cuprate-database",
"cuprate-helper", "cuprate-helper",
"cuprate-test-utils",
"cuprate-types",
"function_name", "function_name",
"rand", "rand",
"serde_json",
"tempfile", "tempfile",
] ]

View file

@ -9,10 +9,10 @@ repository = "https://github.com/Cuprate/cuprate/tree/main/benches/criterion/cu
keywords = ["cuprate", "blockchain", "criterion", "benchmark"] keywords = ["cuprate", "blockchain", "criterion", "benchmark"]
[dependencies] [dependencies]
cuprate-blockchain = { path = "../../../storage/blockchain" } cuprate-blockchain = { workspace = true }
cuprate-test-utils = { path = "../../../test-utils" } cuprate-test-utils = { workspace = true }
cuprate-types = { path = "../../../types", default-features = false } cuprate-types = { workspace = true, default-features = false }
cuprate-helper = { path = "../../../helper", features = ["cast"] } cuprate-helper = { workspace = true, features = ["cast"] }
criterion = { workspace = true } criterion = { workspace = true }
function_name = { workspace = true } function_name = { workspace = true }

View file

@ -9,11 +9,11 @@ repository = "https://github.com/Cuprate/cuprate/tree/main/benches/criterion/cu
keywords = ["cuprate", "cryptonight", "criterion", "benchmark"] keywords = ["cuprate", "cryptonight", "criterion", "benchmark"]
[dependencies] [dependencies]
cuprate-cryptonight = { workspace = true }
criterion = { workspace = true } criterion = { workspace = true }
function_name = { workspace = true } function_name = { workspace = true }
cuprate-cryptonight = { path = "../../../cryptonight" }
[[bench]] [[bench]]
name = "main" name = "main"
harness = false harness = false

View file

@ -24,11 +24,11 @@ redb = ["cuprate-database/redb", "cuprate-blockchain/redb"]
# - cuprate-blockchain/asynch # - cuprate-blockchain/asynch
# - cuprate-blockchain/tx # - cuprate-blockchain/tx
criterion = { workspace = true } cuprate-database = { workspace = true }
cuprate-database = { path = "../../../storage/database" } cuprate-blockchain = { workspace = true }
cuprate-blockchain = { path = "../../../storage/blockchain", features = ["service"] } cuprate-helper = { workspace = true, features = ["asynch", "fs", "thread", "tx"] }
cuprate-helper = { path = "../../../helper", features = ["asynch", "fs", "thread", "tx"] }
criterion = { workspace = true }
function_name = { workspace = true } function_name = { workspace = true }
tempfile = { workspace = true } tempfile = { workspace = true }
rand = { workspace = true, features = ["std", "std_rng"] } rand = { workspace = true, features = ["std", "std_rng"] }

View file

@ -9,9 +9,9 @@ repository = "https://github.com/Cuprate/cuprate/tree/main/benches/criterion/ex
keywords = ["cuprate", "helper", "criterion", "benchmark"] keywords = ["cuprate", "helper", "criterion", "benchmark"]
[dependencies] [dependencies]
cuprate-constants = { path = "../../../constants", features = ["block"] } cuprate-constants = { workspace = true, features = ["block"] }
cuprate-helper = { path = "../../../helper", features = ["cast", "map", "num", "tx"] } cuprate-helper = { workspace = true, features = ["cast", "map", "num", "tx"] }
cuprate-test-utils = { path = "../../../test-utils" } cuprate-test-utils = { workspace = true }
criterion = { workspace = true } criterion = { workspace = true }
function_name = { workspace = true } function_name = { workspace = true }

View file

@ -9,9 +9,9 @@ repository = "https://github.com/Cuprate/cuprate/tree/main/benches/criterion/cu
keywords = ["cuprate", "rpc", "types", "criterion", "benchmark"] keywords = ["cuprate", "rpc", "types", "criterion", "benchmark"]
[dependencies] [dependencies]
cuprate-epee-encoding = { path = "../../../net/epee-encoding" } cuprate-epee-encoding = { workspace = true }
cuprate-rpc-types = { path = "../../../rpc/types", features = ["serde", "epee"] } cuprate-rpc-types = { workspace = true, features = ["serde", "epee"] }
cuprate-test-utils = { path = "../../../test-utils" } cuprate-test-utils = { workspace = true }
criterion = { workspace = true } criterion = { workspace = true }
function_name = { workspace = true } function_name = { workspace = true }