Cargo.toml: add license to package metadata
This commit is contained in:
parent
2c2554d3db
commit
5c9e7ce35b
1 changed files with 8 additions and 0 deletions
|
|
@ -2,16 +2,20 @@
|
||||||
name = "unfettered-keyboard"
|
name = "unfettered-keyboard"
|
||||||
version = "1.1.0"
|
version = "1.1.0"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
license = "GPL-3.0-only"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
|
ashpd = { version = "0.9.2", features = ["wayland"] }
|
||||||
fontconfig = "0.9.0"
|
fontconfig = "0.9.0"
|
||||||
# Disable freetype-sys, as it vendors libfreetype2 while fontconfig dynamically
|
# Disable freetype-sys, as it vendors libfreetype2 while fontconfig dynamically
|
||||||
# links to it. Large dependencies should not be duplicated.
|
# links to it. Large dependencies should not be duplicated.
|
||||||
freetype = { version = "0.7.2", default-features = false }
|
freetype = { version = "0.7.2", default-features = false }
|
||||||
|
futures = "0.3.31"
|
||||||
imgref = "1.10.1"
|
imgref = "1.10.1"
|
||||||
libc = "0.2.158"
|
libc = "0.2.158"
|
||||||
memmap2 = "0.9.4"
|
memmap2 = "0.9.4"
|
||||||
polling = "3.7.3"
|
polling = "3.7.3"
|
||||||
|
reis = { version = "0.3.0", features = ["tokio"] }
|
||||||
rgb = "0.8.50"
|
rgb = "0.8.50"
|
||||||
tokio = { version = "1.40.0", features = ["macros", "rt"] }
|
tokio = { version = "1.40.0", features = ["macros", "rt"] }
|
||||||
wayland-backend = "0.3.7"
|
wayland-backend = "0.3.7"
|
||||||
|
|
@ -30,6 +34,10 @@ bindgen = "0.70.1"
|
||||||
name = "ufkbd-gnome"
|
name = "ufkbd-gnome"
|
||||||
path = "src/ufkbd_gnome.rs"
|
path = "src/ufkbd_gnome.rs"
|
||||||
|
|
||||||
|
[[bin]]
|
||||||
|
name = "ufkbd-kde"
|
||||||
|
path = "src/ufkbd_kde.rs"
|
||||||
|
|
||||||
[[bin]]
|
[[bin]]
|
||||||
name = "ufkbd-sxmo"
|
name = "ufkbd-sxmo"
|
||||||
path = "src/ufkbd_sxmo.rs"
|
path = "src/ufkbd_sxmo.rs"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue