diff --git a/README.md b/README.md index b4daf78..796ecc7 100644 --- a/README.md +++ b/README.md @@ -3,3 +3,10 @@ My personal set of tools to ease and speed up my development experience. 1. `colorizer`: color model converter. + +## Compiling + +To compile the program on your local environment simply run: + +- `$ cargo build --release` + diff --git a/api-faker/.gitignore b/api-faker/.gitignore new file mode 100644 index 0000000..ea8c4bf --- /dev/null +++ b/api-faker/.gitignore @@ -0,0 +1 @@ +/target diff --git a/api-faker/Cargo.lock b/api-faker/Cargo.lock new file mode 100644 index 0000000..5b8b54c --- /dev/null +++ b/api-faker/Cargo.lock @@ -0,0 +1,7 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 4 + +[[package]] +name = "api-faker" +version = "0.1.0" diff --git a/api-faker/Cargo.toml b/api-faker/Cargo.toml new file mode 100644 index 0000000..fc3ab75 --- /dev/null +++ b/api-faker/Cargo.toml @@ -0,0 +1,6 @@ +[package] +name = "api-faker" +version = "0.1.0" +edition = "2024" + +[dependencies] diff --git a/api-faker/src/assets/names.csv b/api-faker/src/assets/names.csv new file mode 100644 index 0000000..e69de29 diff --git a/api-faker/src/main.rs b/api-faker/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/api-faker/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +}