Files
cdk/Cargo.toml
Yuki Kishimoto 3831a4f3bb cashu: adj. dependencies
* Remove `k256`, `bip32`, `hex`, `log`, `rand` and `itertools` deps
* Add `once_cell` and `instant` deps
* Downgrade `bitcoin` to `v0.30` and `base64` to `v0.21`
* Replace `utils` module with `util`
* Remove `utils` from `cashu-sdk`
* Some cleanups

Closes https://github.com/thesimplekid/cashu-crab/issues/35

Signed-off-by: Yuki Kishimoto <yukikishimoto@protonmail.com>
2024-04-10 17:55:40 +02:00

41 lines
962 B
TOML

[workspace]
members = [
"crates/cashu",
"crates/cashu-sdk",
]
resolver = "2"
[workspace.package]
license = "BSD-3-Clause"
homepage = "https://github.com/thesimplekid/cashu-crab"
repository = "https://github.com/thesimplekid/cashu-crab.git"
rust-version = "1.70.0" # MSRV
[workspace.metadata]
authors = ["thesimplekid"]
edition = "2021"
description = "cashu-crab"
readme = "README.md"
repository = "https://github.com/thesimplekid/cashu-crab"
license-file = "LICENSE"
keywords = ["bitcoin", "e-cash", "cashu"]
[workspace.dependencies]
serde = { version = "1.0.160", features = ["derive"]}
serde_json = "1.0.96"
url = "2.3.1"
tokio = { version = "1.32", default-features = false }
tracing = { version = "0.1", default-features = false }
tracing-subscriber = "0.3"
uniffi = "0.24"
thiserror = "1.0.50"
getrandom = { version = "0.2", features = ["js"] }
[profile]
[profile.ci]
inherits = "dev"
incremental = false
debug = "line-tables-only"
lto = "off"