| 1234567891011121314151617181920212223242526272829303132333435363738394041 | 
							- [package]
 
- name = "cdk-mint-rpc"
 
- version.workspace = true
 
- edition.workspace = true
 
- authors = ["CDK Developers"]
 
- description = "CDK mintd mint management 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",
 
- ] }
 
- cdk-common.workspace = true
 
- clap.workspace = true
 
- tonic = { workspace = true, features = ["transport"] }
 
- 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
 
- rustls.workspace = true
 
- [build-dependencies]
 
- tonic-build.workspace = true
 
 
  |