123456789101112131415161718192021222324252627282930313233343536373839 |
- [package]
- name = "cdk-mint-rpc"
- version.workspace = true
- edition.workspace = true
- authors = ["CDK Developers"]
- description = "CDK mintd mint managment RPC client and server"
- license.workspace = true
- homepage = "https://github.com/cashubtc/cdk"
- repository = "https://github.com/cashubtc/cdk.git"
- rust-version.workspace = true # MSRV
- readme = "README.md"
- # Disable missing docs warnings for generated code
- [package.metadata]
- rustdoc-args = ["--allow-missing-docs"]
- [[bin]]
- name = "cdk-mint-cli"
- path = "src/bin/mint_rpc_cli.rs"
- [dependencies]
- anyhow.workspace = true
- cdk = { workspace = true, features = [
- "mint",
- ] }
- clap.workspace = true
- tonic.workspace = true
- tracing.workspace = true
- tracing-subscriber.workspace = true
- tokio.workspace = true
- serde_json.workspace = true
- serde.workspace = true
- thiserror.workspace = true
- prost.workspace = true
- home.workspace = true
- [build-dependencies]
- tonic-build.workspace = true
|