solana/storage-bigtable/Cargo.toml

49 lines
1.5 KiB
TOML
Raw Normal View History

2020-07-17 13:25:28 -07:00
[package]
name = "solana-storage-bigtable"
version = "1.11.0"
2020-07-17 13:25:28 -07:00
description = "Solana Storage BigTable"
authors = ["Solana Maintainers <maintainers@solana.com>"]
repository = "https://github.com/solana-labs/solana"
license = "Apache-2.0"
homepage = "https://solana.com/"
documentation = "https://docs.rs/solana-storage-bigtable"
2021-11-30 16:47:00 -08:00
edition = "2021"
2020-07-17 13:25:28 -07:00
[dependencies]
backoff = { version = "0.4.0", features = ["tokio"] }
bincode = "1.3.3"
bzip2 = "0.4.3"
enum-iterator = "0.7.0"
flate2 = "1.0.23"
goauth = "0.12.0"
log = "0.4.17"
prost = "0.10.0"
prost-types = "0.10.0"
serde = "1.0.137"
2020-07-20 12:15:53 -07:00
serde_derive = "1.0.103"
smpl_jwt = "0.7.0"
solana-metrics = { path = "../metrics", version = "=1.11.0" }
solana-sdk = { path = "../sdk", version = "=1.11.0" }
solana-storage-proto = { path = "../storage-proto", version = "=1.11.0" }
solana-transaction-status = { path = "../transaction-status", version = "=1.11.0" }
2020-07-20 11:56:44 -07:00
thiserror = "1.0"
tonic = { version = "0.7.1", features = ["tls", "transport"] }
zstd = "0.11.1"
2020-07-17 13:25:28 -07:00
2021-11-30 21:54:28 -08:00
# openssl is a dependency of the goauth and smpl_jwt crates, but explicitly
# declare it here as well to activate the "vendored" feature that builds OpenSSL
# statically...
[target."cfg(not(windows))".dependencies]
2021-11-30 21:54:28 -08:00
openssl = { version = "0.10", features = ["vendored"] }
# ...except on Windows to avoid having to deal with getting CI past a build-time
# Perl dependency
[target."cfg(windows)".dependencies]
openssl = { version = "0.10", features = [] }
2021-11-30 21:54:28 -08:00
2020-07-17 13:25:28 -07:00
[lib]
crate-type = ["lib"]
name = "solana_storage_bigtable"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]