Init crate
This commit is contained in:
parent
41bad099b6
commit
26dba7d111
7
.gitignore
vendored
7
.gitignore
vendored
@ -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
12
Cargo.toml
Normal 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
3
src/main.rs
Normal file
@ -0,0 +1,3 @@
|
||||
fn main() {
|
||||
println!("Hello, world!");
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user