From 1f34da16cb178f91abc5a885b988b592e70caa6e Mon Sep 17 00:00:00 2001 From: Avril Date: Tue, 24 Nov 2020 17:37:27 +0000 Subject: [PATCH] skel --- .gitignore | 3 +++ fcmprs/Cargo.toml | 9 +++++++++ fcmprs/src/main.rs | 3 +++ 3 files changed, 15 insertions(+) create mode 100644 fcmprs/Cargo.toml create mode 100644 fcmprs/src/main.rs diff --git a/.gitignore b/.gitignore index c0740a8..dd93889 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,6 @@ fcmp-* test/ perf.* flamegraph.svg + +Cargo.lock +target diff --git a/fcmprs/Cargo.toml b/fcmprs/Cargo.toml new file mode 100644 index 0000000..0e27425 --- /dev/null +++ b/fcmprs/Cargo.toml @@ -0,0 +1,9 @@ +[package] +name = "fcmprs" +version = "0.1.0" +authors = ["Avril "] +edition = "2018" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] diff --git a/fcmprs/src/main.rs b/fcmprs/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/fcmprs/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +}