Init crate

This commit is contained in:
Candifloss 2025-12-14 22:42:17 +05:30
parent 41bad099b6
commit 26dba7d111
3 changed files with 22 additions and 0 deletions

7
.gitignore vendored
View File

@ -20,3 +20,10 @@ Cargo.lock
# and can be added to the global gitignore or merged into this file. For a more nuclear
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
#.idea/
# Added by Candifloss
test/
# Added by cargo
/target

12
Cargo.toml Normal file
View File

@ -0,0 +1,12 @@
[package]
name = "icing"
version = "0.1.0"
edition = "2024"
[dependencies]
anyhow = "1.0.100"
dirs = "6.0.0"
image = { version = "0.25.9", default-features = false, features = ["png", "jpeg"] }
pico-args = "0.5.0"
toml = "0.9.8"
x11rb = { version = "0.13.2", default-features = false }

3
src/main.rs Normal file
View File

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