forked from google/tarpc
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update opentelemetry and related dependencies (google#362)
- Loading branch information
1 parent
b5d1828
commit d7070e4
Showing
3 changed files
with
29 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,10 @@ | |
name = "tarpc" | ||
version = "0.27.2" | ||
rust-version = "1.56" | ||
authors = ["Adam Wright <[email protected]>", "Tim Kuehn <[email protected]>"] | ||
authors = [ | ||
"Adam Wright <[email protected]>", | ||
"Tim Kuehn <[email protected]>", | ||
] | ||
edition = "2021" | ||
license = "MIT" | ||
documentation = "https://docs.rs/tarpc" | ||
|
@@ -23,7 +26,14 @@ serde-transport-json = ["tokio-serde/json"] | |
serde-transport-bincode = ["tokio-serde/bincode"] | ||
tcp = ["tokio/net"] | ||
|
||
full = ["serde1", "tokio1", "serde-transport", "serde-transport-json", "serde-transport-bincode", "tcp"] | ||
full = [ | ||
"serde1", | ||
"tokio1", | ||
"serde-transport", | ||
"serde-transport-json", | ||
"serde-transport-bincode", | ||
"tcp", | ||
] | ||
|
||
[badges] | ||
travis-ci = { repository = "google/tarpc" } | ||
|
@@ -40,11 +50,14 @@ static_assertions = "1.1.0" | |
tarpc-plugins = { path = "../plugins", version = "0.12" } | ||
thiserror = "1.0" | ||
tokio = { version = "1", features = ["time"] } | ||
tokio-util = { version = "0.6.3", features = ["time"] } | ||
tokio-util = { version = "0.6.9", features = ["time"] } | ||
tokio-serde = { optional = true, version = "0.8" } | ||
tracing = { version = "0.1", default-features = false, features = ["attributes", "log"] } | ||
tracing-opentelemetry = { version = "0.15", default-features = false } | ||
opentelemetry = { version = "0.16", default-features = false } | ||
tracing = { version = "0.1", default-features = false, features = [ | ||
"attributes", | ||
"log", | ||
] } | ||
tracing-opentelemetry = { version = "0.17.2", default-features = false } | ||
opentelemetry = { version = "0.17.0", default-features = false } | ||
|
||
|
||
[dev-dependencies] | ||
|
@@ -53,11 +66,13 @@ bincode = "1.3" | |
bytes = { version = "1", features = ["serde"] } | ||
flate2 = "1.0" | ||
futures-test = "0.3" | ||
opentelemetry = { version = "0.16", default-features = false, features = ["rt-tokio"] } | ||
opentelemetry-jaeger = { version = "0.15", features = ["rt-tokio"] } | ||
opentelemetry = { version = "0.17.0", default-features = false, features = [ | ||
"rt-tokio", | ||
] } | ||
opentelemetry-jaeger = { version = "0.16.0", features = ["rt-tokio"] } | ||
pin-utils = "0.1.0-alpha" | ||
serde_bytes = "0.11" | ||
tracing-subscriber = "0.2" | ||
tracing-subscriber = { version = "0.3", features = ["env-filter"] } | ||
tokio = { version = "1", features = ["full", "test-util"] } | ||
tokio-serde = { version = "0.8", features = ["json", "bincode"] } | ||
trybuild = "1.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters