From 28c011c7b3ebd8f5aae111551222ed3748937b33 Mon Sep 17 00:00:00 2001 From: Miquel Sabaté Solà Date: Tue, 3 Jun 2025 21:49:25 +0200 Subject: Initial commit MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Basic commands have been added, but most of the features for this project are still work in progress. Signed-off-by: Miquel Sabaté Solà --- Cargo.toml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 Cargo.toml (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..d5d826d --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,16 @@ +[workspace] +members = ["lib/*", "crates/*"] +resolver = "2" + +[workspace.package] +edition = "2021" +# Everything under crates/* is GPLv3+; everything under lib/* is under LGPLv3+. +license = "GPLv3+ AND LGPLv3+" +authors = ["Miquel Sabaté Solà "] + +[workspace.dependencies] +mihi = { path = "./lib/mihi", version = "0.1.0" } + +[profile.release] +codegen-units = 1 +lto = true -- cgit v1.2.3