diff --git a/ntex-bytes/Cargo.toml b/ntex-bytes/Cargo.toml index 220591cc..b074535b 100644 --- a/ntex-bytes/Cargo.toml +++ b/ntex-bytes/Cargo.toml @@ -27,4 +27,4 @@ simdutf8 = { version = "0.1.4", optional = true } [dev-dependencies] serde_test = "1.0" serde_json = "1.0" -ntex = { version = "1.0.0-b.0", features = ["tokio"] } +ntex = { version = "1.0.0", features = ["tokio"] } diff --git a/ntex-codec/Cargo.toml b/ntex-codec/Cargo.toml index 1b0cd442..b5047acc 100644 --- a/ntex-codec/Cargo.toml +++ b/ntex-codec/Cargo.toml @@ -16,4 +16,4 @@ name = "ntex_codec" path = "src/lib.rs" [dependencies] -ntex-bytes = "0.1.12" +ntex-bytes = "0.1.21" diff --git a/ntex-connect/Cargo.toml b/ntex-connect/Cargo.toml index 122501ee..b99df93f 100644 --- a/ntex-connect/Cargo.toml +++ b/ntex-connect/Cargo.toml @@ -59,4 +59,4 @@ webpki-roots = { version = "0.25", optional = true } [dev-dependencies] rand = "0.8" env_logger = "0.10" -ntex = { version = "1.0.0-b.1", features = ["tokio"] } +ntex = { version = "1.0.0", features = ["tokio"] } diff --git a/ntex-http/Cargo.toml b/ntex-http/Cargo.toml index f570b02c..84076aa8 100644 --- a/ntex-http/Cargo.toml +++ b/ntex-http/Cargo.toml @@ -20,7 +20,7 @@ http = "0.2" log = "0.4" fxhash = "0.2.1" itoa = "1.0.4" -ntex-bytes = "0.1.19" +ntex-bytes = "0.1.21" serde = "1" [dev-dependencies] diff --git a/ntex-io/Cargo.toml b/ntex-io/Cargo.toml index 8a5b5451..91bf62d2 100644 --- a/ntex-io/Cargo.toml +++ b/ntex-io/Cargo.toml @@ -29,4 +29,4 @@ pin-project-lite = "0.2" rand = "0.8" env_logger = "0.10" -ntex = { version = "1.0.0-b.1", features = ["tokio"] } +ntex = { version = "1.0.0", features = ["tokio"] } diff --git a/ntex-macros/Cargo.toml b/ntex-macros/Cargo.toml index cd7ada42..28ce13f3 100644 --- a/ntex-macros/Cargo.toml +++ b/ntex-macros/Cargo.toml @@ -16,6 +16,6 @@ syn = { version = "^1", features = ["full", "parsing"] } proc-macro2 = "^1" [dev-dependencies] -ntex = { version = "1.0.0-b.0", features = ["tokio"] } +ntex = { version = "1.0.0", features = ["tokio"] } futures = "0.3" env_logger = "0.10" \ No newline at end of file diff --git a/ntex-router/Cargo.toml b/ntex-router/Cargo.toml index bd50d3e1..4882b5d0 100644 --- a/ntex-router/Cargo.toml +++ b/ntex-router/Cargo.toml @@ -18,7 +18,7 @@ default = ["http"] [dependencies] serde = "1.0" -ntex-bytes = "0.1.19" +ntex-bytes = "0.1.21" log = "0.4" http = { version = "0.2", optional = true } regex = { version = "1.9.5", default-features = false, features = ["std"] } diff --git a/ntex-service/Cargo.toml b/ntex-service/Cargo.toml index e7e12748..70a1eaf4 100644 --- a/ntex-service/Cargo.toml +++ b/ntex-service/Cargo.toml @@ -19,5 +19,5 @@ path = "src/lib.rs" slab = "0.4" [dev-dependencies] -ntex = { version = "1.0.0-b.0", features = ["tokio"] } +ntex = { version = "1.0.0", features = ["tokio"] } ntex-util = "1.0.0" diff --git a/ntex-tls/Cargo.toml b/ntex-tls/Cargo.toml index cc77629d..56bba238 100644 --- a/ntex-tls/Cargo.toml +++ b/ntex-tls/Cargo.toml @@ -39,7 +39,7 @@ tls_openssl = { version = "0.10", package = "openssl", optional = true } tls_rust = { version = "0.21", package = "rustls", optional = true } [dev-dependencies] -ntex = { version = "1.0.0-b.1", features = ["openssl", "rustls", "tokio"] } +ntex = { version = "1.0.0", features = ["openssl", "rustls", "tokio"] } env_logger = "0.10" rustls-pemfile = "1.0" webpki-roots = "0.25" diff --git a/ntex-util/Cargo.toml b/ntex-util/Cargo.toml index d9bb70ca..cfcb6441 100644 --- a/ntex-util/Cargo.toml +++ b/ntex-util/Cargo.toml @@ -28,7 +28,7 @@ futures-sink = { version = "0.3", default-features = false, features = ["alloc"] pin-project-lite = "0.2.9" [dev-dependencies] -ntex = { version = "1.0.0-b.1", features = ["tokio"] } +ntex = { version = "1.0.0", features = ["tokio"] } ntex-bytes = "0.1.21" ntex-macros = "0.1.3" futures-util = { version = "0.3", default-features = false, features = ["alloc"] } diff --git a/ntex/Cargo.toml b/ntex/Cargo.toml index 763b6056..adaf9b18 100644 --- a/ntex/Cargo.toml +++ b/ntex/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ntex" -version = "1.0.0-b.1" +version = "1.0.0" authors = ["ntex contributors "] description = "Framework for composable network services" readme = "README.md" @@ -56,7 +56,7 @@ ntex-service = "2.0.0" ntex-macros = "0.1.3" ntex-util = "1.0.0" ntex-bytes = "0.1.21" -ntex-h2 = "0.5.0-b.0" +ntex-h2 = "0.5.0" ntex-rt = "0.4.11" ntex-io = "1.0.0" ntex-tls = "1.0.0"