Skip to content

Commit 3835c94

Browse files
committed
address comments
1 parent c8c7819 commit 3835c94

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ resolver = "2"
3535
debug = 1
3636

3737
[workspace.dependencies]
38-
async-std = { version = "1.10", default-features = false }
38+
async-std = "1.10"
3939
async-trait = "0.1"
4040
bytes = "1"
4141
env_logger = { version = "0.10", default-features = false } # env_logger requires a newer MSRV
@@ -49,7 +49,7 @@ log = "0.4"
4949
once_cell = "1.13"
5050
ordered-float = "4.0"
5151
pin-project-lite = "0.2"
52-
prost = "0.12"
52+
prost = "0.12"
5353
prost-build = "0.12"
5454
prost-types = "0.12"
5555
rand = { version = "0.8", default-features = false }

opentelemetry-proto/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ serde = { workspace = true, optional = true, features = ["serde_derive"] }
5757
hex = { version = "0.4.3", optional = true }
5858

5959
[dev-dependencies]
60-
tonic-build = { workspace = true, default-features = true }
61-
prost-build = { workspace = true, default-features = true }
60+
tonic-build = { workspace = true }
61+
prost-build = { workspace = true }
6262
tempfile = "3.3.0"
6363
serde_json = "1.0"

opentelemetry-sdk/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ rust-version = "1.65"
1212
[dependencies]
1313
opentelemetry = { version = "0.21", path = "../opentelemetry/" }
1414
opentelemetry-http = { version = "0.10", path = "../opentelemetry-http", optional = true }
15-
async-std = { workspace = true, default-features = true, features = ["unstable"], optional = true }
15+
async-std = { workspace = true, features = ["unstable"], optional = true }
1616
async-trait = { workspace = true, optional = true }
1717
crossbeam-channel = { version = "0.5", optional = true }
1818
futures-channel = "0.3"

0 commit comments

Comments
 (0)