mirror of
https://github.com/aljazceru/cdk.git
synced 2025-12-24 08:05:02 +01:00
36 lines
880 B
TOML
36 lines
880 B
TOML
[workspace]
|
|
|
|
members = [
|
|
"crates/cashu",
|
|
"crates/cashu-sdk",
|
|
"bindings/uniffi-bindgen",
|
|
"bindings/cashu-ffi",
|
|
"bindings/cashu-sdk-ffi"
|
|
]
|
|
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-rs-mint"
|
|
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"
|
|
|