2020-07-17 13:25:28 -07:00
|
|
|
[package]
|
|
|
|
name = "solana-storage-bigtable"
|
2022-09-13 07:06:15 -07:00
|
|
|
version = "1.15.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/"
|
2021-03-10 12:46:17 -08:00
|
|
|
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]
|
2021-12-15 10:20:04 -08:00
|
|
|
backoff = { version = "0.4.0", features = ["tokio"] }
|
2021-06-21 09:06:31 -07:00
|
|
|
bincode = "1.3.3"
|
2022-08-16 10:04:10 -07:00
|
|
|
bytes = "1.2"
|
2021-07-01 12:10:52 -07:00
|
|
|
bzip2 = "0.4.3"
|
2022-08-31 14:07:29 -07:00
|
|
|
enum-iterator = "1.2.0"
|
2022-05-31 22:15:46 -07:00
|
|
|
flate2 = "1.0.24"
|
2022-09-22 15:26:18 -07:00
|
|
|
futures = "0.3.24"
|
2022-08-10 16:03:21 -07:00
|
|
|
goauth = "0.13.1"
|
2022-07-25 14:19:52 -07:00
|
|
|
http = "0.2.8"
|
2022-07-22 12:25:56 -07:00
|
|
|
hyper = "0.14.20"
|
2022-06-23 09:51:31 -07:00
|
|
|
hyper-proxy = "0.9.1"
|
2022-05-04 18:49:18 -07:00
|
|
|
log = "0.4.17"
|
2022-08-02 15:37:28 -07:00
|
|
|
prost = "0.11.0"
|
2022-08-08 23:43:06 -07:00
|
|
|
prost-types = "0.11.1"
|
2022-09-07 15:54:44 -07:00
|
|
|
serde = "1.0.144"
|
2020-07-20 12:15:53 -07:00
|
|
|
serde_derive = "1.0.103"
|
2022-05-23 10:27:49 -07:00
|
|
|
smpl_jwt = "0.7.1"
|
2022-09-13 07:06:15 -07:00
|
|
|
solana-metrics = { path = "../metrics", version = "=1.15.0" }
|
|
|
|
solana-sdk = { path = "../sdk", version = "=1.15.0" }
|
|
|
|
solana-storage-proto = { path = "../storage-proto", version = "=1.15.0" }
|
|
|
|
solana-transaction-status = { path = "../transaction-status", version = "=1.15.0" }
|
2020-07-20 11:56:44 -07:00
|
|
|
thiserror = "1.0"
|
2022-08-05 19:50:45 -07:00
|
|
|
tokio = "1"
|
2022-08-02 15:37:28 -07:00
|
|
|
tonic = { version = "0.8.0", features = ["tls", "transport"] }
|
2022-05-12 19:28:50 -07:00
|
|
|
zstd = "0.11.2"
|
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
|
2021-12-03 09:35:03 -08:00
|
|
|
# statically...
|
|
|
|
[target."cfg(not(windows))".dependencies]
|
2021-11-30 21:54:28 -08:00
|
|
|
openssl = { version = "0.10", features = ["vendored"] }
|
2021-12-03 09:35:03 -08:00
|
|
|
# ...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"]
|