mirror of
https://github.com/hinto-janai/cuprate.git
synced 2024-12-22 19:49:33 +00:00
cargo.toml fixes
This commit is contained in:
parent
7b31745db3
commit
7e005012ed
6 changed files with 22 additions and 22 deletions
12
Cargo.lock
generated
12
Cargo.lock
generated
|
@ -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",
|
||||
]
|
||||
|
||||
|
|
|
@ -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 }
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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"] }
|
||||
|
|
|
@ -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 }
|
||||
|
|
|
@ -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 }
|
||||
|
|
Loading…
Reference in a new issue