Cargo.toml 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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", "tls-ring", "codegen", "router"] }
  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. tonic-prost.workspace = true
  33. prost.workspace = true
  34. home.workspace = true
  35. rustls.workspace = true
  36. [build-dependencies]
  37. tonic-prost-build.workspace = true
  38. [lints]
  39. workspace = true