mirror of
https://github.com/aljazceru/cdk.git
synced 2026-02-22 21:45:41 +01:00
51 lines
1.3 KiB
TOML
51 lines
1.3 KiB
TOML
[package]
|
|
name = "cdk-integration-tests"
|
|
version = "0.2.0"
|
|
edition = "2021"
|
|
authors = ["CDK Developers"]
|
|
description = "Core Cashu Development Kit library implementing the Cashu protocol"
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
rust-version.workspace = true # MSRV
|
|
license.workspace = true
|
|
|
|
|
|
[features]
|
|
|
|
|
|
[dependencies]
|
|
axum.workspace = true
|
|
rand.workspace = true
|
|
bip39 = { workspace = true, features = ["rand"] }
|
|
anyhow.workspace = true
|
|
cdk = { workspace = true, features = ["mint", "wallet"] }
|
|
cdk-axum.workspace = true
|
|
cdk-fake-wallet.workspace = true
|
|
tower-http.workspace = true
|
|
futures.workspace = true
|
|
|
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
|
tokio = { workspace = true, features = [
|
|
"rt-multi-thread",
|
|
"time",
|
|
"macros",
|
|
"sync",
|
|
] }
|
|
|
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
|
tokio = { workspace = true, features = ["rt", "macros", "sync", "time"] }
|
|
getrandom = { version = "0.2", features = ["js"] }
|
|
instant = { version = "0.1", features = ["wasm-bindgen", "inaccurate"] }
|
|
|
|
[dev-dependencies]
|
|
axum.workspace = true
|
|
rand.workspace = true
|
|
bip39 = { workspace = true, features = ["rand"] }
|
|
anyhow.workspace = true
|
|
cdk = { workspace = true, features = ["mint", "wallet"] }
|
|
cdk-axum.workspace = true
|
|
cdk-fake-wallet.workspace = true
|
|
tower-http.workspace = true
|
|
# cdk-redb.workspace = true
|
|
# cdk-sqlite.workspace = true
|