[package] name = "breezy" version = "3.3.4" authors = [ "Martin Packman ", "Jelmer Vernooij "] edition = "2021" default-run = "brz" license = "GPL-2.0+" license-file = "COPYING.txt" description = "Friendly distributed version control system" repository = "https://code.launchpad.net/brz" homepage = "https://www.breezy-vcs.org/" documentation = "https://www.breezy-vcs.org/doc/" include = [ "src/*.rs", "breezy/main.rs", "README.rst", ] [workspace] members = ["crates/*"] [[bin]] name = "brz" path = "breezy/main.rs" [lib] [features] default = ["i18n"] i18n = ["dep:gettext-rs"] [dependencies] pyo3 = ">=0.17, <0.19" gettext-rs = { version = "0.7", optional = true } log = "0.4" breezy-osutils = { path = "crates/osutils", version = ">=3.3.4" } chrono = "0.4" [target.'cfg(unix)'.dependencies] nix = ">=0.26"