Skip to content

Commit

Permalink
deps: form-data v0.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
fundon committed Dec 26, 2023
1 parent bb8bd58 commit 9b32966
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 20 deletions.
18 changes: 9 additions & 9 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -55,13 +55,15 @@ viz-macros = { version = "0.2.0", path = "viz-macros" }
viz-test = { version = "0.2.0", path = "viz-test" }
viz-tower = { version = "0.1.0", path = "viz-tower" }

anyhow = "1.0"
async-trait = "0.1"
dyn-clone = "1.0"
bytes = "1.5"
dyn-clone = "1.0"
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
serde_urlencoded = "0.7"
sync_wrapper = "0.1.2"
thiserror = "1.0"

# router
Expand All @@ -74,6 +76,12 @@ http-body = "1"
http-body-util = "0.1"
hyper = { version = "1.1", features = ["server"] }
hyper-util = { version = "0.1.2", features = ["server-auto", "tokio"] }
mime = "0.3"
mime_guess = "2.0"
percent-encoding = "2.3"

hex = "0.4"
rust-embed = "8"

futures-util = "0.3"
rustls-pemfile = "1.0"
Expand All @@ -84,14 +92,6 @@ tokio-stream = "0.1"
tokio-tungstenite = "0.21"
tokio-util = "0.7"

anyhow = "1.0"
mime = "0.3"
mime_guess = "2.0"
percent-encoding = "2.3"

hex = "0.4"
rust-embed = "8"

# OpenTelemetry
opentelemetry = { version = "0.21", default-features = false }
opentelemetry_sdk = { version = "0.21", default-features = false }
Expand Down
16 changes: 8 additions & 8 deletions viz-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,8 @@ otel-metrics = ["otel", "opentelemetry?/metrics"]
async-trait.workspace = true
dyn-clone.workspace = true
futures-util.workspace = true
sync_wrapper.workspace = true
thiserror.workspace = true

bytes.workspace = true
headers.workspace = true
Expand All @@ -67,14 +69,11 @@ http-body.workspace = true
http.workspace = true
hyper-util.workspace = true
hyper.workspace = true
sync_wrapper = "0.1.2"

mime.workspace = true
thiserror.workspace = true

rfc7239 = "0.1" # realip
cookie = { version = "0.18", features = ["percent-encode"], optional = true }
form-data = { version = "0.5.0", optional = true }
form-data = { version = "0.5.1", optional = true }
serde = { workspace = true, features = ["derive"], optional = true }
serde_json = { workspace = true, optional = true }
serde_urlencoded = { workspace = true, optional = true }
Expand All @@ -92,15 +91,16 @@ async-compression = { version = "0.4", features = [
"deflate",
], optional = true }

# OpenTelemetry
opentelemetry = { workspace = true, default-features = false, optional = true }
opentelemetry-semantic-conventions = { workspace = true, optional = true }

# Tokio
tokio = { workspace = true, optional = true }
tokio-tungstenite = { workspace = true, optional = true }
tokio-stream = { workspace = true, optional = true }
tokio-util = { workspace = true, optional = true }

# OpenTelemetry
opentelemetry = { workspace = true, default-features = false, optional = true }
opentelemetry-semantic-conventions = { workspace = true, optional = true }

[dev-dependencies]
tokio = { workspace = true, features = ["rt-multi-thread", "macros"] }

Expand Down
7 changes: 4 additions & 3 deletions viz/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -75,12 +75,13 @@ viz-macros = { workspace = true, optional = true }

hyper.workspace = true
hyper-util.workspace = true
tokio.workspace = true

futures-util = { workspace = true, optional = true }
rustls-pemfile = { workspace = true, optional = true }
tokio-rustls = { workspace = true, optional = true }

futures-util = { workspace = true, optional = true }
tokio-native-tls = { workspace = true, optional = true }
tokio-rustls = { workspace = true, optional = true }
tokio.workspace = true

[dev-dependencies]
tokio = { workspace = true, features = ["macros", "rt", "rt-multi-thread"] }
Expand Down

0 comments on commit 9b32966

Please sign in to comment.