Cargo.toml 852 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. [package]
  2. name = "cdk-mint-rpc"
  3. version = "0.7.1"
  4. edition = "2021"
  5. authors = ["CDK Developers"]
  6. description = "CDK mintd mint managment RPC client and server"
  7. license = "MIT"
  8. homepage = "https://github.com/cashubtc/cdk"
  9. repository = "https://github.com/cashubtc/cdk.git"
  10. rust-version = "1.75.0" # 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 = { version = "0.12.3", features = [
  21. "channel",
  22. "tls",
  23. "tls-webpki-roots",
  24. ] }
  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 = "0.13.1"
  32. home.workspace = true
  33. [build-dependencies]
  34. tonic-build = "0.12"