Cargo.toml 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. [package]
  2. name = "agave-cargo-registry"
  3. description = "Solana cargo registry"
  4. documentation = "https://docs.rs/agave-cargo-registry"
  5. version = { workspace = true }
  6. authors = { workspace = true }
  7. repository = { workspace = true }
  8. homepage = { workspace = true }
  9. license = { workspace = true }
  10. edition = { workspace = true }
  11. [package.metadata.docs.rs]
  12. targets = ["x86_64-unknown-linux-gnu"]
  13. [features]
  14. default = ["remote-wallet-hidraw"]
  15. agave-unstable-api = []
  16. dev-context-only-utils = []
  17. remote-wallet-hidraw = ["solana-remote-wallet/linux-static-hidraw"]
  18. remote-wallet-libusb = ["solana-remote-wallet/linux-static-libusb"]
  19. [dependencies]
  20. agave-logger = { workspace = true }
  21. clap = { workspace = true }
  22. flate2 = { workspace = true }
  23. hex = { workspace = true }
  24. hyper = { workspace = true, features = ["full"] }
  25. log = { workspace = true }
  26. serde = { workspace = true }
  27. serde_json = { workspace = true }
  28. sha2 = { workspace = true }
  29. solana-clap-utils = { workspace = true }
  30. solana-cli = { workspace = true }
  31. solana-cli-config = { workspace = true }
  32. solana-cli-output = { workspace = true }
  33. solana-commitment-config = { workspace = true }
  34. solana-keypair = { workspace = true }
  35. solana-pubkey = { workspace = true }
  36. solana-remote-wallet = { workspace = true }
  37. solana-rpc-client = { workspace = true, features = ["default"] }
  38. solana-rpc-client-api = { workspace = true }
  39. solana-signer = { workspace = true }
  40. solana-version = { workspace = true }
  41. tar = { workspace = true }
  42. tempfile = { workspace = true }
  43. tokio = { workspace = true, features = ["full"] }
  44. toml = { workspace = true }
  45. [dev-dependencies]