# Make this a workspace so that path dependencies below share the same lockfile. [workspace] [workspace.package] license = "MIT OR Apache-2.0" edition = "2021" repository = "https://github.com/gibfahn/up" keywords = ["cli", "tool"] categories = ["command-line-utilities", "config"] readme = "README.md" authors = ["Gibson Fahnestock "] [workspace.lints.rust] unsafe_code = "forbid" # up is the root package in this workspace. [package] name = "up-rs" version = "0.16.2" authors.workspace = true categories.workspace = true edition.workspace = true keywords.workspace = true license.workspace = true readme.workspace = true repository.workspace = true description = """ up is a tool to help you keep your machine up to date. """ documentation = "https://docs.rs/crate/up" homepage = "https://github.com/gibfahn/up" exclude = ["tests/"] [[bin]] name = "up" path = "src/main.rs" [dependencies] camino = { version = "1.1.9", features = ["serde1"] } chrono = "0.4.38" clap = { version = "4.5.17", features = [ "derive", "env", "string", "wrap_help", ] } clap_complete = "4.5.28" color-eyre = "0.6.3" dirs = "5.0.1" displaydoc = "0.2.5" duct = "0.13.7" envy = "0.4.2" git2 = { version = "0.19.0", features = [ "vendored-openssl", "vendored-libgit2", ] } hex = "0.4.3" itertools = "0.13.0" indicatif = { version = "0.17.8", features = ["rayon"] } log = "0.4.22" plist = "1.7.0" rayon = "1.10.0" reqwest = { version = "0.12.7", features = ["blocking", "json"] } ring = "0.17.8" schemars = "0.8.21" semver = "1.0.23" serde = "1.0.210" serde_derive = "1.0.210" serde_json = "1.0.128" serde_yaml = "0.9.34" shell-escape = "0.1.5" shellexpand = "3.1.0" thiserror = "1.0.63" toml = "0.8.19" tracing = "0.1.40" tracing-error = "0.2.0" tracing-subscriber = { version = "0.3.18", features = ["env-filter"] } url = "2.5.2" uzers = "0.12.1" walkdir = "2.5.0" tracing-indicatif = "0.3.6" [dev-dependencies] assert_cmd = "2.0.16" glob = "0.3.1" ignore = "0.4.23" predicates = "3.1.2" serial_test = "3.1.1" test-log = { version = "0.2.16", default-features = false, features = [ "trace", ] } testutils = { path = "./tests/testutils" }