-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
37 lines (34 loc) · 1.1 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
[package]
name = "config-encryption"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "flow-config-encryption"
path = "src/main.rs"
[dependencies]
anyhow = "*"
async-trait = "*"
axum = { version = "0.5.3", features = ["headers", "multipart"] }
axum-macros = "0.2.0"
bytes = "*"
chrono = { version = "*", features = ["serde"] }
clap = { version = "3", features = ["derive", "env"] }
futures = "0.3"
flow_cli_common = { git = "https://github.com/estuary/flow", branch = "master" }
doc = { git = "https://github.com/estuary/flow", branch = "master" }
json = { git = "https://github.com/estuary/flow", branch = "master" }
serde = { version = "1", features = ["derive"] }
serde_json = { version = "1", features = ["raw_value"] }
serde_yaml = "0.8"
thiserror = "1.0.30"
tokio = { version = "1", features = ["full"] }
tower-http = { version = "0.3", features = ["cors", "trace", "tracing"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
url = { version = "*", features = ["serde"] }
mime = "0.3"
metrics = "0.18"
metrics-exporter-prometheus = "0.9"
[dev-dependencies]
tower = "*"
hyper = "*"