26 lines
903 B
TOML
26 lines
903 B
TOML
|
[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" }
|
||
|
tracing = { version = "0.1", features = ["max_level_trace", "release_max_level_debug"] }
|
||
|
tracing-subscriber = "0.2.0"
|
||
|
trogging = { path = "../trogging", features = ["clap"] }
|
||
|
workspace-hack = { path = "../workspace-hack"}
|
||
|
|
||
|
[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
|