Skip to content

Commit

Permalink
chore(viz): remove trybuild, does not supports dep:
Browse files Browse the repository at this point in the history
  • Loading branch information
fundon committed Sep 24, 2022
1 parent f4b6822 commit 95579e9
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 23 deletions.
16 changes: 7 additions & 9 deletions viz-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -50,13 +50,13 @@ cors = []
async-trait = "0.1.56"
bytes = "1.1"
dyn-clone = "1.0.8"
futures-util = "0.3.23"
headers = "0.3.7"
futures-util = "0.3.24"
headers = "0.3.8"
http = "0.2.7"
http-body = "0.4.5"
hyper = { version = "0.14", features = ["stream"] }
mime = "0.3.16"
thiserror = "1.0.31"
thiserror = "1.0.35"

cookie = { version = "0.16.0", features = ["percent-encode"], optional = true }
form-data = { version = "0.4.1", optional = true }
Expand All @@ -69,15 +69,13 @@ sessions-core = { version = "0.3.4", optional = true }
getrandom = { version = "0.2.7", optional = true }
base64 = { version = "0.13.0", optional = true }

tokio = { version = "1.20", optional = true }
tokio = { version = "1.21", optional = true }
tokio-tungstenite = { version = "0.17.2", optional = true }
tokio-stream = { version = "0.1.9", optional = true }
tokio-util = { version = "0.7.3", optional = true }
tokio-stream = { version = "0.1.10", optional = true }
tokio-util = { version = "0.7.4", optional = true }

[dev-dependencies]
tokio = { version = "1.0", features = ["rt-multi-thread", "macros"] }
# https://github.com/dtolnay/trybuild/pull/172
trybuild = { version = "1.0.61", git = "https://github.com/Anders429/trybuild" }
tokio = { version = "1.21", features = ["rt-multi-thread", "macros"] }

[package.metadata.docs.rs]
all-features = true
Expand Down
File renamed without changes.
5 changes: 0 additions & 5 deletions viz-core/tests/test.rs

This file was deleted.

14 changes: 7 additions & 7 deletions viz-handlers/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,19 +37,19 @@ thiserror = "1.0"
mime_guess = { version = "2.0", optional = true }

# serve
percent-encoding = { version = "2.1.0", optional = true }
tokio = { version = "1.20", optional = true }
tokio-stream = { version = "0.1.9", optional = true }
tokio-util = { version = "0.7.3", optional = true }
percent-encoding = { version = "2.2.0", optional = true }
tokio = { version = "1.21", optional = true }
tokio-stream = { version = "0.1.10", optional = true }
tokio-util = { version = "0.7.4", optional = true }

# embed
hex = { version = "0.4", optional = true }
rust-embed = { version = "6.4", optional = true }
rust-embed = { version = "6.4.1", optional = true }

# OpenTelemetry
opentelemetry = { version = "0.17.0", optional = true }
opentelemetry = { version = "0.18.0", optional = true }
# Prometheus Exporter
opentelemetry-prometheus = { version = "0.10.0", features = ["prometheus-encoding"], optional = true }
opentelemetry-prometheus = { version = "0.11.0", features = ["prometheus-encoding"], optional = true }

[package.metadata.docs.rs]
all-features = true
Expand Down
4 changes: 2 additions & 2 deletions viz/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,9 @@ viz-handlers = { path = "../viz-handlers", version = "0.2.1", default-features =
viz-macros = { path = "../viz-macros", version = "0.1.0", optional = true }

hyper = { version = "0.14", features = ["server", "stream", "tcp"] }
tokio = { version = "1.20", features = ["net"] }
tokio = { version = "1.21", features = ["net"] }

futures-util = { version = "0.3.23", optional = true }
futures-util = { version = "0.3.24", optional = true }
rustls-pemfile = { version = "1.0.0", optional = true }
tokio-rustls = { version = "0.23.4", optional = true }
tokio-native-tls = { version = "0.3.0", optional = true }
Expand Down

0 comments on commit 95579e9

Please sign in to comment.