2022-08-10 09:07:38 +00:00
|
|
|
[package]
|
|
|
|
name = "import"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
clap_blocks = { path = "../clap_blocks" }
|
|
|
|
futures = "0.3"
|
|
|
|
object_store = { version = "0.3.0", features = ["aws"] }
|
|
|
|
observability_deps = { path = "../observability_deps" }
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
serde_json = "1.0.82"
|
|
|
|
thiserror = "1.0.31"
|
|
|
|
tokio = { version = "1.17" }
|
|
|
|
trogging = { path = "../trogging", features = ["clap"] }
|
|
|
|
workspace-hack = { path = "../workspace-hack"}
|
|
|
|
|
2022-08-10 12:15:37 +00:00
|
|
|
[dev-dependencies]
|
|
|
|
assert_matches = "1.5"
|
|
|
|
|
2022-08-10 09:07:38 +00:00
|
|
|
[features]
|
|
|
|
azure = ["object_store/azure"] # Optional Azure Object store support
|
|
|
|
gcp = ["object_store/gcp"] # Optional GCP object store support
|
|
|
|
aws = ["object_store/aws"] # Optional AWS / S3 object store support
|