Cargo.toml 954 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. [package]
  2. name = "cdk-mint-rpc"
  3. version.workspace = true
  4. edition.workspace = true
  5. authors = ["CDK Developers"]
  6. description = "CDK mintd mint managment 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. clap.workspace = true
  24. tonic.workspace = true
  25. tracing.workspace = true
  26. tracing-subscriber.workspace = true
  27. tokio.workspace = true
  28. serde_json.workspace = true
  29. serde.workspace = true
  30. thiserror.workspace = true
  31. prost.workspace = true
  32. home.workspace = true
  33. [build-dependencies]
  34. tonic-build.workspace = true