Cargo.toml 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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.63.0" # MSRV
  11. [[bin]]
  12. name = "cdk-mint-cli"
  13. path = "src/bin/mint_rpc_cli.rs"
  14. [dependencies]
  15. anyhow = "1"
  16. cdk = { path = "../cdk", version = "0.7.1", default-features = false, features = [
  17. "mint",
  18. ] }
  19. clap = { version = "~4.0.32", features = ["derive"] }
  20. tonic = { version = "0.9", features = [
  21. "channel",
  22. "tls",
  23. "tls-webpki-roots",
  24. ] }
  25. tracing = { version = "0.1", default-features = false, features = [
  26. "attributes",
  27. "log",
  28. ] }
  29. tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
  30. tokio = { version = "1", default-features = false }
  31. serde_json = "1"
  32. serde = { version = "1", features = ["derive"] }
  33. thiserror = "1"
  34. prost = "0.11.0"
  35. home = "0.5.5"
  36. [build-dependencies]
  37. tonic-build = "0.9"