| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- [package]
- name = "agave-cargo-registry"
- description = "Solana cargo registry"
- documentation = "https://docs.rs/agave-cargo-registry"
- version = { workspace = true }
- authors = { workspace = true }
- repository = { workspace = true }
- homepage = { workspace = true }
- license = { workspace = true }
- edition = { workspace = true }
- [package.metadata.docs.rs]
- targets = ["x86_64-unknown-linux-gnu"]
- [features]
- default = ["remote-wallet-hidraw"]
- agave-unstable-api = []
- dev-context-only-utils = []
- remote-wallet-hidraw = ["solana-remote-wallet/linux-static-hidraw"]
- remote-wallet-libusb = ["solana-remote-wallet/linux-static-libusb"]
- [dependencies]
- agave-logger = { workspace = true }
- clap = { workspace = true }
- flate2 = { workspace = true }
- hex = { workspace = true }
- hyper = { workspace = true, features = ["full"] }
- log = { workspace = true }
- serde = { workspace = true }
- serde_json = { workspace = true }
- sha2 = { workspace = true }
- solana-clap-utils = { workspace = true }
- solana-cli = { workspace = true }
- solana-cli-config = { workspace = true }
- solana-cli-output = { workspace = true }
- solana-commitment-config = { workspace = true }
- solana-keypair = { workspace = true }
- solana-pubkey = { workspace = true }
- solana-remote-wallet = { workspace = true }
- solana-rpc-client = { workspace = true, features = ["default"] }
- solana-rpc-client-api = { workspace = true }
- solana-signer = { workspace = true }
- solana-version = { workspace = true }
- tar = { workspace = true }
- tempfile = { workspace = true }
- tokio = { workspace = true, features = ["full"] }
- toml = { workspace = true }
- [dev-dependencies]
|