From acf4260d4e4fdf18b547f2a3d1bb4f987db55362 Mon Sep 17 00:00:00 2001 From: George Date: Fri, 16 Sep 2022 21:41:53 +0300 Subject: [PATCH] Minor changes of root `Cargo.toml`. **Removed**: - `resolver = "2"` is unnecessary due to in the 2021 edition `resolver` are by default is `2`. **Added**: - Set default crate to run by `cargo run/r` command. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 672c6f24..8a3903c3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ version = "0.2.0" authors = ["Dongdong Zhou "] edition = "2021" rust-version = "1.62" -resolver = "2" +default-run = "lapce" [dependencies] lapce-ui = { path = "./lapce-ui" }