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