Skip to content

Commit ede1ec5

Browse files
authored
deps: Revert some version requirements (#110)
Signed-off-by: Andy Lok <[email protected]>
1 parent 8f27063 commit ede1ec5

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

minitrace-macro/Cargo.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ keywords = ["tracing", "span", "datadog", "jaeger", "opentracing"]
1515
proc-macro = true
1616

1717
[dependencies]
18-
syn = { version = "1", features = ["full", "parsing", "extra-traits", "proc-macro", "visit-mut"] }
18+
# The macro `quote_spanned!` is added to syn in 1.0.84
19+
syn = { version = "1.0.84", features = ["full", "parsing", "extra-traits", "proc-macro", "visit-mut"] }
1920
quote = "1"
2021
proc-macro2 = "1"
2122
proc-macro-error = "1"

minitrace/Cargo.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ once_cell = "1"
2323
retain_mut = "0.1"
2424

2525
[dev-dependencies]
26+
# The procedural macro `trace` only supports async-trait higher than 0.1.52
27+
async-trait = "0.1.52"
2628
criterion = { version = "0.3", features = ["html_reports"] }
2729
crossbeam = "0.8"
2830
minitrace-jaeger = { path = "../minitrace-jaeger" }
@@ -37,7 +39,6 @@ tracing-core = "0.1"
3739
tracing-subscriber = "0.2"
3840
rand = "0.8"
3941
futures = "0.3"
40-
async-trait = "0.1"
4142
futures-timer = "3"
4243
mockall = "0.11"
4344

0 commit comments

Comments
 (0)