From cfc1312a800157c8d6487cdbe10a042d2501595e Mon Sep 17 00:00:00 2001 From: Candifloss Date: Tue, 9 Dec 2025 17:45:06 +0530 Subject: [PATCH] Cargo init --- .gitignore | 6 ++++++ Cargo.toml | 23 +++++++++++++++++++++++ src/main.rs | 3 +++ 3 files changed, 32 insertions(+) create mode 100644 Cargo.toml create mode 100644 src/main.rs diff --git a/.gitignore b/.gitignore index ab951f8..0df5c44 100644 --- a/.gitignore +++ b/.gitignore @@ -20,3 +20,9 @@ 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 mer +test/ + +# Added by cargo + +/target diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..6b29b0a --- /dev/null +++ b/Cargo.toml @@ -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 "] +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" diff --git a/src/main.rs b/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +}