Skip to content

Commit

Permalink
bump: v0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fundon committed Sep 28, 2022
1 parent 4c63854 commit ca8feeb
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions viz-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "viz-core"
version = "0.3.1"
version = "0.4.0"
edition = "2021"
rust-version = "1.60"
license = "MIT OR Apache-2.0"
Expand Down Expand Up @@ -89,7 +89,7 @@ tokio-stream = { version = "0.1.10", optional = true }
tokio-util = { version = "0.7.4", optional = true }

[dev-dependencies]
tokio = { version = "1.21", features = ["rt-multi-thread", "macros"] }
tokio = { version = "1.0", features = ["rt-multi-thread", "macros"] }

[package.metadata.docs.rs]
all-features = true
Expand Down
4 changes: 2 additions & 2 deletions viz-handlers/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "viz-handlers"
version = "0.2.1"
version = "0.3.0"
edition = "2021"
rust-version = "1.60"
license = "MIT OR Apache-2.0"
Expand Down Expand Up @@ -28,7 +28,7 @@ embed = ["dep:hex", "dep:mime_guess", "dep:rust-embed"]
prometheus = ["opentelemetry/metrics", "dep:opentelemetry-prometheus"]

[dependencies]
viz-core = { path = "../viz-core", version = '0.3.1' }
viz-core = { path = "../viz-core", version = '0.4.0' }

# required!
thiserror = "1.0"
Expand Down
4 changes: 2 additions & 2 deletions viz-router/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "viz-router"
version = "0.3.1"
version = "0.4.0"
edition = "2021"
rust-version = "1.60"
license = "MIT OR Apache-2.0"
Expand All @@ -15,7 +15,7 @@ publish = true
default = []

[dependencies]
viz-core = { path = "../viz-core", version = "0.3.1" }
viz-core = { path = "../viz-core", version = "0.4.0" }
path-tree = { version = "0.6" }
serde = "1.0"
thiserror = "1.0"
Expand Down
10 changes: 5 additions & 5 deletions viz/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "viz"
version = "0.3.1"
version = "0.4.0"
edition = "2021"
rust-version = "1.60"
readme = "README.md"
Expand Down Expand Up @@ -68,9 +68,9 @@ rustls = ["dep:rustls-pemfile", "dep:tokio-rustls", "dep:futures-util"]
native-tls = ["dep:tokio-native-tls", "dep:futures-util"]

[dependencies]
viz-core = { path = "../viz-core", version = "0.3.1" }
viz-router = { path = "../viz-router", version = "0.3.1" }
viz-handlers = { path = "../viz-handlers", version = "0.2.1", default-features = false, optional = true }
viz-core = { path = "../viz-core", version = "0.4.0" }
viz-router = { path = "../viz-router", version = "0.4.0" }
viz-handlers = { path = "../viz-handlers", version = "0.3.0", default-features = false, optional = true }
viz-macros = { path = "../viz-macros", version = "0.1.0", optional = true }

hyper = { version = "0.14", features = ["server", "stream", "tcp"] }
Expand All @@ -82,7 +82,7 @@ tokio-rustls = { version = "0.23.4", optional = true }
tokio-native-tls = { version = "0.3.0", optional = true }

[dev-dependencies]
tokio = { version = "1.20", features = ["macros", "rt", "rt-multi-thread"] }
tokio = { version = "1.0", features = ["macros", "rt", "rt-multi-thread"] }

[package.metadata.docs.rs]
all-features = true
Expand Down

0 comments on commit ca8feeb

Please sign in to comment.