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"
[[package]]
name = "cuprate-criterion-database"
name = "cuprate-criterion-blockchain"
version = "0.0.0"
dependencies = [
"criterion",
"cuprate-blockchain",
"cuprate-database",
"cuprate-helper",
"cuprate-test-utils",
"cuprate-types",
"function_name",
"rand",
"serde_json",
"tempfile",
]
@ -821,17 +823,15 @@ dependencies = [
]
[[package]]
name = "cuprate-criterion-blockchain"
name = "cuprate-criterion-database"
version = "0.0.0"
dependencies = [
"criterion",
"cuprate-blockchain",
"cuprate-database",
"cuprate-helper",
"cuprate-test-utils",
"cuprate-types",
"function_name",
"rand",
"serde_json",
"tempfile",
]

View file

@ -9,10 +9,10 @@ repository = "https://github.com/Cuprate/cuprate/tree/main/benches/criterion/cu
keywords = ["cuprate", "blockchain", "criterion", "benchmark"]
[dependencies]
cuprate-blockchain = { path = "../../../storage/blockchain" }
cuprate-test-utils = { path = "../../../test-utils" }
cuprate-types = { path = "../../../types", default-features = false }
cuprate-helper = { path = "../../../helper", features = ["cast"] }
cuprate-blockchain = { workspace = true }
cuprate-test-utils = { workspace = true }
cuprate-types = { workspace = true, default-features = false }
cuprate-helper = { workspace = true, features = ["cast"] }
criterion = { 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"]
[dependencies]
cuprate-cryptonight = { workspace = true }
criterion = { workspace = true }
function_name = { workspace = true }
cuprate-cryptonight = { path = "../../../cryptonight" }
[[bench]]
name = "main"
harness = false

View file

@ -24,11 +24,11 @@ redb = ["cuprate-database/redb", "cuprate-blockchain/redb"]
# - cuprate-blockchain/asynch
# - cuprate-blockchain/tx
criterion = { workspace = true }
cuprate-database = { path = "../../../storage/database" }
cuprate-blockchain = { path = "../../../storage/blockchain", features = ["service"] }
cuprate-helper = { path = "../../../helper", features = ["asynch", "fs", "thread", "tx"] }
cuprate-database = { workspace = true }
cuprate-blockchain = { workspace = true }
cuprate-helper = { workspace = true, features = ["asynch", "fs", "thread", "tx"] }
criterion = { workspace = true }
function_name = { workspace = true }
tempfile = { workspace = true }
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"]
[dependencies]
cuprate-constants = { path = "../../../constants", features = ["block"] }
cuprate-helper = { path = "../../../helper", features = ["cast", "map", "num", "tx"] }
cuprate-test-utils = { path = "../../../test-utils" }
cuprate-constants = { workspace = true, features = ["block"] }
cuprate-helper = { workspace = true, features = ["cast", "map", "num", "tx"] }
cuprate-test-utils = { workspace = true }
criterion = { 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"]
[dependencies]
cuprate-epee-encoding = { path = "../../../net/epee-encoding" }
cuprate-rpc-types = { path = "../../../rpc/types", features = ["serde", "epee"] }
cuprate-test-utils = { path = "../../../test-utils" }
cuprate-epee-encoding = { workspace = true }
cuprate-rpc-types = { workspace = true, features = ["serde", "epee"] }
cuprate-test-utils = { workspace = true }
criterion = { workspace = true }
function_name = { workspace = true }