2020-07-17 13:25:28 -07:00
|
|
|
[package]
|
|
|
|
name = "solana-storage-bigtable"
|
2021-05-27 08:51:53 -07:00
|
|
|
version = "1.8.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"
|
2020-07-17 13:25:28 -07:00
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[dependencies]
|
2021-02-04 23:21:53 -08:00
|
|
|
backoff = { version = "0.3.0", features = ["tokio"] }
|
2021-06-21 09:06:31 -07:00
|
|
|
bincode = "1.3.3"
|
2021-07-01 12:10:52 -07:00
|
|
|
bzip2 = "0.4.3"
|
2021-07-26 19:07:06 -07:00
|
|
|
enum-iterator = "0.7.0"
|
2021-09-15 13:30:30 -07:00
|
|
|
flate2 = "1.0.22"
|
2021-04-01 04:22:17 -07:00
|
|
|
goauth = "0.10.0"
|
2021-06-30 11:32:01 -07:00
|
|
|
log = "0.4.14"
|
2021-07-09 10:31:26 -07:00
|
|
|
prost = "0.8.0"
|
|
|
|
prost-types = "0.8.0"
|
2021-08-30 11:19:34 -07:00
|
|
|
serde = "1.0.130"
|
2020-07-20 12:15:53 -07:00
|
|
|
serde_derive = "1.0.103"
|
2021-02-04 23:21:53 -08:00
|
|
|
smpl_jwt = "0.6.0"
|
2021-05-27 08:51:53 -07:00
|
|
|
solana-sdk = { path = "../sdk", version = "=1.8.0" }
|
|
|
|
solana-storage-proto = { path = "../storage-proto", version = "=1.8.0" }
|
|
|
|
solana-transaction-status = { path = "../transaction-status", version = "=1.8.0" }
|
2020-07-20 11:56:44 -07:00
|
|
|
thiserror = "1.0"
|
2021-08-11 08:49:31 -07:00
|
|
|
tonic = { version = "0.5.2", features = ["tls", "transport"] }
|
2021-06-29 10:12:57 -07:00
|
|
|
zstd = "0.9.0"
|
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"]
|