Cargo.toml 822 B

12345678910111213141516171819202122232425262728293031323334
  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. [[bin]]
  12. name = "cdk-mint-cli"
  13. path = "src/bin/mint_rpc_cli.rs"
  14. [dependencies]
  15. anyhow.workspace = true
  16. cdk = { workspace = true, features = [
  17. "mint",
  18. ] }
  19. clap.workspace = true
  20. tonic.workspace = true
  21. tracing.workspace = true
  22. tracing-subscriber.workspace = true
  23. tokio.workspace = true
  24. serde_json.workspace = true
  25. serde.workspace = true
  26. thiserror.workspace = true
  27. prost.workspace = true
  28. home.workspace = true
  29. [build-dependencies]
  30. tonic-build.workspace = true