Configure project

This commit is contained in:
Elnu 2023-08-13 19:46:19 -07:00
parent 3c2a423301
commit b7b441a933
7 changed files with 113 additions and 70 deletions

8
dyesub-tool/Cargo.toml Normal file
View file

@ -0,0 +1,8 @@
[package]
name = "dyesub-tool"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

3
dyesub-tool/src/main.rs Normal file
View file

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