mirror of
https://github.com/neondatabase/neon.git
synced 2026-01-08 05:52:55 +00:00
Part of https://github.com/neondatabase/neon/issues/2683 Initial PR: https://github.com/neondatabase/neon/pull/2802, revert: https://github.com/neondatabase/neon/pull/2837 Co-authored-by: andres <andres.rodriguez@outlook.es>
28 lines
860 B
TOML
28 lines
860 B
TOML
[package]
|
|
name = "remote_storage"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
anyhow = { version = "1.0", features = ["backtrace"] }
|
|
async-trait = "0.1"
|
|
metrics = { version = "0.1", path = "../metrics" }
|
|
utils = { version = "0.1", path = "../utils" }
|
|
once_cell = "1.13.0"
|
|
aws-smithy-http = "0.51.0"
|
|
aws-types = "0.51.0"
|
|
aws-config = { version = "0.51.0", default-features = false, features=["rustls"] }
|
|
aws-sdk-s3 = "0.21.0"
|
|
hyper = { version = "0.14", features = ["stream"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1"
|
|
tokio = { version = "1.17", features = ["sync", "macros", "fs", "io-util"] }
|
|
tokio-util = { version = "0.7", features = ["io"] }
|
|
toml_edit = { version = "0.14", features = ["easy"] }
|
|
tracing = "0.1.27"
|
|
|
|
workspace_hack = { version = "0.1", path = "../../workspace_hack" }
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3.2"
|