Skip to content

Commit

Permalink
Upgrade ntex (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
fafhrd91 authored May 28, 2024
1 parent c1b31f2 commit bcdcc2f
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 17 deletions.
10 changes: 5 additions & 5 deletions examples/custom/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
[package]
name = "custom"
version = "0.6.0"
version = "0.7.0"
edition = "2021"

[[bin]]
name = "client"
path = "src/client.rs"

[dependencies]
ntex = "1.2"
ntex-h2 = "0.5"
ntex-grpc = "0.6"
ntex = "2"
ntex-h2 = "1"
ntex-grpc = "0.7"

env_logger = "0.11"
uuid = { version = "1", features = ["v4"] }

[dev-dependencies]
ntex = { version = "1.2", features = ["openssl", "tokio"] }
ntex = { version = "2", features = ["openssl", "tokio"] }
10 changes: 5 additions & 5 deletions examples/helloworld/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "helloworld"
version = "0.6.0"
version = "0.7.0"
edition = "2021"

[[bin]]
Expand All @@ -12,14 +12,14 @@ name = "server"
path = "src/server.rs"

[dependencies]
ntex = "1.2"
ntex-grpc = "0.6"
ntex-h2 = "0.5"
ntex = "2"
ntex-grpc = "0.7"
ntex-h2 = "1"

clap = "2"
log = "0.4"
env_logger = "0.11"
num_cpus = "1"

[dev-dependencies]
ntex = { version = "1.2", features = ["openssl", "tokio"] }
ntex = { version = "2", features = ["openssl", "tokio"] }
4 changes: 4 additions & 0 deletions ntex-grpc/CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changes

## [0.7.0] - 2024-05-28

* Upgrade to ntex v2.0

## [0.6.4] - 2024-05-16

* Fix f32/f64 encoding
Expand Down
14 changes: 7 additions & 7 deletions ntex-grpc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ntex-grpc"
version = "0.6.4"
version = "0.7.0"
license = "MIT OR Apache-2.0"
authors = ["Nikolay Kim <[email protected]>"]
description = "GRPC Client/Server framework"
Expand All @@ -16,19 +16,19 @@ name = "ntex_grpc"
path = "src/lib.rs"

[dependencies]
ntex-h2 = "0.5"
ntex-h2 = "1"
ntex-http = "0.1"
ntex-io = "1.0"
ntex-util = "1.0"
ntex-io = "2"
ntex-util = "2"
ntex-bytes = "0.1"
ntex-service = "2.0"
ntex-service = "3"
ntex-grpc-derive = "0.6"

log = "0.4"
thiserror = "1.0"
thiserror = "1"
pin-project-lite = "0.2"

[dev-dependencies]
openssl = "0.10"
ntex = { version = "1.2", features = ["openssl", "tokio"] }
ntex = { version = "2", features = ["openssl", "tokio"] }
env_logger = { version = "0.11", default-features = false }

0 comments on commit bcdcc2f

Please sign in to comment.