From 11fe028adeffc1e5b0ad9bb81c50434e41adcc25 Mon Sep 17 00:00:00 2001 From: Folyd Date: Wed, 24 Nov 2021 04:07:29 +0800 Subject: [PATCH] chore: fix cargo MSRV field typo (#1742) --- examples/Cargo.toml | 2 +- tracing-appender/Cargo.toml | 2 +- tracing-attributes/Cargo.toml | 2 +- tracing-core/Cargo.toml | 2 +- tracing-error/Cargo.toml | 2 +- tracing-flame/Cargo.toml | 2 +- tracing-futures/Cargo.toml | 2 +- tracing-journald/Cargo.toml | 2 +- tracing-log/Cargo.toml | 2 +- tracing-macros/Cargo.toml | 2 +- tracing-opentelemetry/Cargo.toml | 2 +- tracing-serde/Cargo.toml | 2 +- tracing-subscriber/Cargo.toml | 2 +- tracing-tower/Cargo.toml | 2 +- tracing/Cargo.toml | 2 +- 15 files changed, 15 insertions(+), 15 deletions(-) diff --git a/examples/Cargo.toml b/examples/Cargo.toml index c8bc237345..d264b66309 100644 --- a/examples/Cargo.toml +++ b/examples/Cargo.toml @@ -3,7 +3,7 @@ name = "tracing-examples" version = "0.0.0" publish = false edition = "2018" -rust = "1.42.0" +rust-version = "1.42.0" [features] default = [] diff --git a/tracing-appender/Cargo.toml b/tracing-appender/Cargo.toml index 60dda02d10..d502fa96fa 100644 --- a/tracing-appender/Cargo.toml +++ b/tracing-appender/Cargo.toml @@ -18,7 +18,7 @@ categories = [ ] keywords = ["logging", "tracing", "file-appender", "non-blocking-writer"] edition = "2018" -rust = "1.51.0" +rust-version = "1.51.0" [dependencies] crossbeam-channel = "0.5.0" diff --git a/tracing-attributes/Cargo.toml b/tracing-attributes/Cargo.toml index 5b48606f15..424d0a4e59 100644 --- a/tracing-attributes/Cargo.toml +++ b/tracing-attributes/Cargo.toml @@ -28,7 +28,7 @@ keywords = ["logging", "tracing", "macro", "instrument", "log"] license = "MIT" readme = "README.md" edition = "2018" -rust = "1.42.0" +rust-version = "1.42.0" [lib] proc-macro = true diff --git a/tracing-core/Cargo.toml b/tracing-core/Cargo.toml index 04473f5d65..1cc3b3d8f0 100644 --- a/tracing-core/Cargo.toml +++ b/tracing-core/Cargo.toml @@ -24,7 +24,7 @@ categories = [ ] keywords = ["logging", "tracing", "profiling"] edition = "2018" -rust = "1.42.0" +rust-version = "1.42.0" [features] default = ["std"] diff --git a/tracing-error/Cargo.toml b/tracing-error/Cargo.toml index 1319ca12a0..ffa9f41c57 100644 --- a/tracing-error/Cargo.toml +++ b/tracing-error/Cargo.toml @@ -32,7 +32,7 @@ keywords = [ "backtrace" ] edition = "2018" -rust = "1.42.0" +rust-version = "1.42.0" [features] default = ["traced-error"] diff --git a/tracing-flame/Cargo.toml b/tracing-flame/Cargo.toml index 8a24865d7e..8af1403095 100644 --- a/tracing-flame/Cargo.toml +++ b/tracing-flame/Cargo.toml @@ -19,7 +19,7 @@ categories = [ "asynchronous", ] keywords = ["tracing", "subscriber", "flamegraph", "profiling"] -rust = "1.42.0" +rust-version = "1.42.0" [features] default = ["smallvec"] diff --git a/tracing-futures/Cargo.toml b/tracing-futures/Cargo.toml index 0607245a29..753d9fc04e 100644 --- a/tracing-futures/Cargo.toml +++ b/tracing-futures/Cargo.toml @@ -16,7 +16,7 @@ categories = [ ] keywords = ["logging", "profiling", "tracing", "futures", "async"] license = "MIT" -rust = "1.42.0" +rust-version = "1.42.0" [features] default = ["std-future", "std"] diff --git a/tracing-journald/Cargo.toml b/tracing-journald/Cargo.toml index 1cee7fb9f8..e7a663eac0 100644 --- a/tracing-journald/Cargo.toml +++ b/tracing-journald/Cargo.toml @@ -13,7 +13,7 @@ categories = [ "development-tools::profiling", ] keywords = ["tracing", "journald"] -rust = "1.42.0" +rust-version = "1.42.0" [dependencies] tracing-core = { path = "../tracing-core", version = "0.1.10" } diff --git a/tracing-log/Cargo.toml b/tracing-log/Cargo.toml index 1ba84784b4..dfc76599f8 100644 --- a/tracing-log/Cargo.toml +++ b/tracing-log/Cargo.toml @@ -15,7 +15,7 @@ categories = [ keywords = ["logging", "tracing", "log"] license = "MIT" readme = "README.md" -rust = "1.42.0" +rust-version = "1.42.0" [features] default = ["log-tracer", "trace-logger", "std"] diff --git a/tracing-macros/Cargo.toml b/tracing-macros/Cargo.toml index 4f3418b46f..3d83e7680e 100644 --- a/tracing-macros/Cargo.toml +++ b/tracing-macros/Cargo.toml @@ -15,7 +15,7 @@ categories = [ ] keywords = ["logging", "tracing"] license = "MIT" -rust = "1.42.0" +rust-version = "1.42.0" [dependencies] tracing = "0.1.18" diff --git a/tracing-opentelemetry/Cargo.toml b/tracing-opentelemetry/Cargo.toml index 9d3c191a08..f5c5eb5421 100644 --- a/tracing-opentelemetry/Cargo.toml +++ b/tracing-opentelemetry/Cargo.toml @@ -17,7 +17,7 @@ categories = [ keywords = ["tracing", "opentelemetry", "jaeger", "zipkin", "async"] license = "MIT" edition = "2018" -rust = "1.42.0" +rust-version = "1.42.0" [features] default = ["tracing-log"] diff --git a/tracing-serde/Cargo.toml b/tracing-serde/Cargo.toml index 552580ce46..390f0569c3 100644 --- a/tracing-serde/Cargo.toml +++ b/tracing-serde/Cargo.toml @@ -16,7 +16,7 @@ categories = [ "encoding", ] keywords = ["logging", "tracing", "serialization"] -rust = "1.42.0" +rust-version = "1.42.0" [dependencies] serde = "1" diff --git a/tracing-subscriber/Cargo.toml b/tracing-subscriber/Cargo.toml index e2d2a58b45..a485b2dd1e 100644 --- a/tracing-subscriber/Cargo.toml +++ b/tracing-subscriber/Cargo.toml @@ -20,7 +20,7 @@ categories = [ "asynchronous", ] keywords = ["logging", "tracing", "metrics", "subscriber"] -rust = "1.42.0" +rust-version = "1.42.0" [features] diff --git a/tracing-tower/Cargo.toml b/tracing-tower/Cargo.toml index f828a1c8a8..9f421158a2 100644 --- a/tracing-tower/Cargo.toml +++ b/tracing-tower/Cargo.toml @@ -15,7 +15,7 @@ categories = [ ] keywords = ["logging", "tracing"] license = "MIT" -rust = "1.42.0" +rust-version = "1.42.0" [features] default = ["tower-layer", "tower-make"] diff --git a/tracing/Cargo.toml b/tracing/Cargo.toml index a5abc364b1..699d79a339 100644 --- a/tracing/Cargo.toml +++ b/tracing/Cargo.toml @@ -25,7 +25,7 @@ categories = [ ] keywords = ["logging", "tracing", "metrics", "async"] edition = "2018" -rust = "1.42.0" +rust-version = "1.42.0" [dependencies] tracing-core = { path = "../tracing-core", version = "0.1.21", default-features = false }