Skip to content

Commit

Permalink
Breaking Changes from tower. Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
amigin committed Aug 29, 2024
1 parent 9793b08 commit 3c06584
Showing 1 changed file with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions my-grpc-extensions/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ with-telemetry = ["dep:my-telemetry", "my-grpc-client-macros?/with-telemetry"]
grpc-client = ["my-grpc-client-macros"]
grpc-server = ["my-grpc-server-macros"]
with-tls = ["my-tls"]
with-unix-socket = []
with-unix-socket = ["tower/util"]
with-ssh = ["my-ssh", "my-grpc-client-macros?/with-ssh"]


Expand All @@ -31,19 +31,14 @@ lazy_static = "*"

my-tls = { tag = "0.1.1", git = "https://github.com/MyJetTools/my-tls.git", optional = true }
tokio = { version = "*", features = ["full"] }
tonic = { version = "*", features = [
"tls",
"tls-roots",
"prost",
"tls-webpki-roots",
] }
tonic = { version = "*", features = ["tls", "tls-roots", "prost"] }
hyper = { version = "*" }
hyper-util = { version = "*", features = ["tokio"] }
futures-util = "*"
tokio-stream = "*"
futures = "*"
async-trait = "*"
tower = "*"
tower = { version = "*" }
my-ssh = { tag = "0.1.1", git = "https://github.com/MyJetTools/my-ssh.git", optional = true }
my-grpc-client-macros = { optional = true, path = "../my-grpc-client-macros" }
my-grpc-server-macros = { optional = true, path = "../my-grpc-server-macros" }
Expand Down

0 comments on commit 3c06584

Please sign in to comment.