Cargo.toml 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. [package]
  2. name = "solana-remote-wallet"
  3. documentation = "https://docs.rs/solana-remote-wallet"
  4. version = { workspace = true }
  5. authors = { workspace = true }
  6. description = { 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 = ["linux-static-hidraw"]
  15. agave-unstable-api = []
  16. linux-shared-hidraw = ["hidapi/linux-shared-hidraw"]
  17. linux-shared-libusb = ["hidapi/linux-shared-libusb"]
  18. linux-static-hidraw = ["hidapi/linux-static-hidraw"]
  19. linux-static-libusb = ["hidapi/linux-static-libusb"]
  20. [dependencies]
  21. console = { workspace = true }
  22. dialoguer = { workspace = true }
  23. hidapi = { workspace = true, optional = true }
  24. log = { workspace = true }
  25. num-derive = { workspace = true }
  26. num-traits = { workspace = true }
  27. parking_lot = { workspace = true }
  28. qstring = { workspace = true }
  29. semver = { workspace = true }
  30. solana-derivation-path = { workspace = true }
  31. solana-offchain-message = { workspace = true }
  32. solana-pubkey = { workspace = true, features = ["std"] }
  33. solana-signature = { workspace = true, features = ["std"] }
  34. solana-signer = { workspace = true }
  35. thiserror = { workspace = true }
  36. uriparse = { workspace = true }
  37. [dev-dependencies]
  38. assert_matches = { workspace = true }
  39. solana-pubkey = { workspace = true, features = ["rand"] }