23 lines
647 B
TOML
23 lines
647 B
TOML
# file: crates/ksp-offchain-transport-lib/Cargo.toml
|
|
# version: 4
|
|
|
|
[package]
|
|
name = "ksp-offchain-transport-lib"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
repository.workspace = true
|
|
|
|
[dependencies]
|
|
chrono = { workspace = true, features = ["std"] }
|
|
ksp-core-lib = { path = "../ksp-core-lib" }
|
|
ksp-logging-lib = { path = "../ksp-logging-lib" }
|
|
reqwest = { workspace = true, features = ["rustls"] }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_json = { workspace = true, features = ["raw_value"] }
|
|
|
|
[dev-dependencies]
|
|
tokio = { workspace = true, features = ["io-util", "macros", "net", "rt", "time"] }
|
|
|
|
[lints]
|
|
workspace = true
|