Eric Kit for Rust exploration
- Rust 100%
| src | ||
| tests | ||
| .gitignore | ||
| build.rs | ||
| Cargo.toml | ||
| LICENSE | ||
| README.md | ||
| rustfmt.toml | ||
ek
Eric Kit for Rust exploration
This is my library to some usefull (for me) basic stuff.
this static folder is for my shareable current developments and is not publish in crates.io. to use it, you have to copy the mod.rs-ref in src parent folder and create a link to include it in bruild process
linux eg: cp ./ek/mod.rs-ref ./ek-mod.rs ln -s ./ek-mod.rs ./mod.rs
windows (cmd) eg: copy .\ek\mod.rs-ref .\ek-mod.rs cd ek mklink mod.rs ..\ek-mod.rs
windows (pwsh) eg: Copy-Item -Path .\ek\mod.rs-ref -Destination .\ek-mod.rs cd ek New-Item -ItemType SymbolicLink -Path mod.rs -Target ..\ek-mod.rs