From 62956a6b138c3824389274cee87a9f781ff4077c Mon Sep 17 00:00:00 2001 From: Determinant Date: Mon, 8 Jun 2020 22:32:53 -0400 Subject: init --- Cargo.toml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 Cargo.toml (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..0899509 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,20 @@ +[package] +name = "growth-ring" +version = "0.1.0" +authors = ["Determinant "] +edition = "2018" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] +crc = "1.8.1" + +[lib] +name = "growthring" +path = "src/lib.rs" +crate-type = ["dylib", "rlib", "staticlib"] + + +[profile.release] +lto = true +debug = true -- cgit v1.2.3