Cargo init

This commit is contained in:
Candifloss 2025-12-09 17:45:06 +05:30
parent 5a0ae0cc94
commit cfc1312a80
3 changed files with 32 additions and 0 deletions

6
.gitignore vendored
View File

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

23
Cargo.toml Normal file
View File

@ -0,0 +1,23 @@
[package]
name = "popcorn"
version = "0.1.0"
edition = "2024"
description = "Cute and simple OSD popups on your desktop"
readme = "README.md"
repository = "https://git.candifloss.cc/candifloss/popcorn.git"
authors = ["Candifloss <candifloss.cc>"]
categories = ["Desktop", "GUI"]
license-file = "LICENSE"
homepage = "https://git.candifloss.cc/candifloss/popcorn.git"
keywords = ["OSD", "popup", "desktop", "gui", "slint"]
license = "GPL-3+"
[dependencies]
dirs = "6.0.0"
i-slint-backend-winit = "1.14.1"
serde_json = "1.0.145"
slint = "1.14.1"
toml = "0.9.8"
[build-dependencies]
slint-build = "1.14.1"

3
src/main.rs Normal file
View File

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