Initial first applet

This commit is contained in:
Lucy 2022-02-01 13:24:00 -05:00
parent c555037160
commit a518251f16
No known key found for this signature in database
GPG key ID: EBC517FAD666BBF1
4 changed files with 24 additions and 1 deletions

View file

@ -0,0 +1,9 @@
[package]
name = "cosmic-applet-network"
version = "0.1.0"
edition = "2021"
license = "LGPL-3.0-or-later"
[dependencies]
gtk4 = "0.4.6"
zbus = "2.0.1"

View file

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