Compare commits
1 Commits
feature/ra
...
feat/api-f
| Author | SHA1 | Date | |
|---|---|---|---|
| d37bf6e980 |
@@ -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`
|
||||
|
||||
|
||||
1
api-faker/.gitignore
vendored
Normal file
1
api-faker/.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
||||
/target
|
||||
7
api-faker/Cargo.lock
generated
Normal file
7
api-faker/Cargo.lock
generated
Normal file
@@ -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"
|
||||
6
api-faker/Cargo.toml
Normal file
6
api-faker/Cargo.toml
Normal file
@@ -0,0 +1,6 @@
|
||||
[package]
|
||||
name = "api-faker"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
|
||||
[dependencies]
|
||||
0
api-faker/src/assets/names.csv
Normal file
0
api-faker/src/assets/names.csv
Normal file
|
|
3
api-faker/src/main.rs
Normal file
3
api-faker/src/main.rs
Normal file
@@ -0,0 +1,3 @@
|
||||
fn main() {
|
||||
println!("Hello, world!");
|
||||
}
|
||||
Reference in New Issue
Block a user