Creation of jaby_engine_fconv

This commit is contained in:
2022-09-17 14:54:44 +02:00
parent 7c5c8ae50a
commit 9d7613b7e7
6 changed files with 27 additions and 2 deletions

View File

@@ -0,0 +1,10 @@
[package]
name = "jaby_engine_fconv"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = {version = "*", features = ["derive"]}
tool_helper = {path = "../tool_helper"}

View File

@@ -0,0 +1,8 @@
#[cfg(test)]
mod tests {
#[test]
fn it_works() {
let result = 2 + 2;
assert_eq!(result, 4);
}
}

View File

@@ -0,0 +1,3 @@
fn main() {
println!("Blubb!");
}