From 44d7654ef6719572dd509bb38c95e281b17bb55c Mon Sep 17 00:00:00 2001 From: Philipp Oppermann Date: Fri, 17 Jul 2020 10:57:04 +0200 Subject: [PATCH] Add `toml` extension to .cargo/config and use table format for `unstable` --- .cargo/{config => config.toml} | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) rename .cargo/{config => config.toml} (66%) diff --git a/.cargo/config b/.cargo/config.toml similarity index 66% rename from .cargo/config rename to .cargo/config.toml index 8e9ab91df..2f9647c1a 100644 --- a/.cargo/config +++ b/.cargo/config.toml @@ -1,4 +1,5 @@ -unstable.build-std = ["core", "compiler_builtins"] +[unstable] +build-std = ["core", "compiler_builtins"] [build] target = "x86_64-blog_os.json"