Initialize images

This commit is contained in:
Elnu 2023-08-08 13:44:58 -07:00
parent dad460ad37
commit 7c043e8357
5 changed files with 17 additions and 1 deletions

8
images/Cargo.toml Normal file
View file

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

3
images/src/main.rs Normal file
View file

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