mirror of
https://github.com/logos-co/nomos-node.git
synced 2026-08-31 11:31:09 +00:00
38 lines
1.3 KiB
TOML
38 lines
1.3 KiB
TOML
[package]
|
|
categories = { workspace = true }
|
|
description = { workspace = true }
|
|
edition = { workspace = true }
|
|
keywords = { workspace = true }
|
|
license = { workspace = true }
|
|
name = "logos-blockchain-utils"
|
|
readme = { workspace = true }
|
|
repository = { workspace = true }
|
|
version = { workspace = true }
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
async-trait = "0.1"
|
|
blake2 = { default-features = false, optional = true, version = "0.10" }
|
|
cipher = { version = "0.4" }
|
|
const-hex = { default-features = false, version = "1" }
|
|
humantime = { optional = true, version = "2.1" }
|
|
overwatch = { workspace = true }
|
|
rand = { features = ["getrandom"], workspace = true }
|
|
serde = { features = ["derive"], optional = true, workspace = true }
|
|
serde_with = { optional = true, workspace = true }
|
|
time = { default-features = false, features = ["serde-human-readable"], optional = true, version = "0.3" }
|
|
|
|
[features]
|
|
rng = ["dep:blake2"]
|
|
serde = ["serde/alloc"]
|
|
time = ["dep:humantime", "dep:serde", "dep:serde_with", "dep:time"]
|
|
types = []
|
|
|
|
[dev-dependencies]
|
|
nistrs = "0.1.2"
|
|
rand_chacha = { default-features = false, version = "0.3" }
|
|
serde_json = { default-features = false, features = ["alloc"], version = "1.0" }
|
|
serde_with = { features = ["macros"], workspace = true }
|