Using `[workspace.dependencies]`, we can update `rev =` for a dependency in one place, instead of each individual applet.
13 lines
362 B
TOML
13 lines
362 B
TOML
[package]
|
|
name = "cosmic-applet"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
libcosmic.workspace = true
|
|
ron = { version = "0.8" }
|
|
serde = { version = "1.0" }
|
|
cosmic-panel-config = { git = "https://github.com/pop-os/cosmic-panel" }
|
|
log = { version = "0.4" }
|