about summary refs log tree commit diff
path: root/src/bootstrap
diff options
context:
space:
mode:
authoronur-ozkan <work@onurozkan.dev>2023-10-10 18:53:23 +0300
committeronur-ozkan <work@onurozkan.dev>2023-10-10 18:53:23 +0300
commitacaec5ca463133811b383f0a819082979e6513b0 (patch)
tree2a6347d7c98891c15a741ae7a238661e116c36ba /src/bootstrap
parent361c1641741238baa5a52da255ced6cbe506e5d2 (diff)
downloadrust-acaec5ca463133811b383f0a819082979e6513b0.tar.gz
rust-acaec5ca463133811b383f0a819082979e6513b0.zip
move `features` above to appear before others sections
Signed-off-by: onur-ozkan <work@onurozkan.dev>
Diffstat (limited to 'src/bootstrap')
-rw-r--r--src/bootstrap/Cargo.toml6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bootstrap/Cargo.toml b/src/bootstrap/Cargo.toml
index 8363992309a..7e72e877104 100644
--- a/src/bootstrap/Cargo.toml
+++ b/src/bootstrap/Cargo.toml
@@ -5,6 +5,9 @@ edition = "2021"
 build = "build.rs"
 default-run = "bootstrap"
 
+[features]
+build-metrics = ["sysinfo"]
+
 [lib]
 path = "lib.rs"
 doctest = false
@@ -80,9 +83,6 @@ features = [
 [dev-dependencies]
 pretty_assertions = "1.4"
 
-[features]
-build-metrics = ["sysinfo"]
-
 # We care a lot about bootstrap's compile times, so don't include debuginfo for
 # dependencies, only bootstrap itself.
 [profile.dev]