1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- [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
|