Cargo.toml 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. [package]
  2. name = "cdk-mint-rpc"
  3. version.workspace = true
  4. edition.workspace = true
  5. authors = ["CDK Developers"]
  6. description = "CDK mintd mint management RPC client and server"
  7. license.workspace = true
  8. homepage = "https://github.com/cashubtc/cdk"
  9. repository = "https://github.com/cashubtc/cdk.git"
  10. rust-version.workspace = true # MSRV
  11. readme = "README.md"
  12. # Disable missing docs warnings for generated code
  13. [package.metadata]
  14. rustdoc-args = ["--allow-missing-docs"]
  15. [[bin]]
  16. name = "cdk-mint-cli"
  17. path = "src/bin/mint_rpc_cli.rs"
  18. [dependencies]
  19. anyhow.workspace = true
  20. cdk = { workspace = true, features = [
  21. "mint",
  22. ] }
  23. cdk-common = { workspace = true }
  24. clap.workspace = true
  25. tonic = { workspace = true, features = ["transport"] }
  26. tracing.workspace = true
  27. tracing-subscriber.workspace = true
  28. tokio.workspace = true
  29. serde_json.workspace = true
  30. serde.workspace = true
  31. thiserror.workspace = true
  32. prost.workspace = true
  33. home.workspace = true
  34. rustls.workspace = true
  35. [build-dependencies]
  36. tonic-build.workspace = true