Move profile settings in the root Cargo.toml
authorGrégory Burri <gregory.burri@matisa.ch>
Fri, 11 Sep 2020 11:39:10 +0000 (13:39 +0200)
committerGrégory Burri <gregory.burri@matisa.ch>
Fri, 11 Sep 2020 11:39:10 +0000 (13:39 +0200)
backend/Cargo.toml
common/Cargo.toml
common/src/lib.rs

index 27b8ad6..257e2e7 100644 (file)
@@ -34,8 +34,3 @@ features = ["bundled"]
 [dependencies.askama]
 version = "0.9"
 features = ["with-actix-web"]
-
-[profile.release]
-codegen-units = 1
-lto = true
-panic = 'abort'
index 2c31465..cf6ec79 100644 (file)
@@ -6,3 +6,9 @@ edition = "2018"
 
 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
 [dependencies]
+
+
+[profile.release]
+codegen-units = 1
+lto = true
+panic = 'abort'
index d257341..5112279 100644 (file)
@@ -1,5 +1,7 @@
 
-
+fn f(a: i32, b: i32) -> i32 {
+    a + 2 * b
+}
 
 mod tests {
     use super::*;