-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathCargo.toml
More file actions
67 lines (58 loc) · 1.54 KB
/
Cargo.toml
File metadata and controls
67 lines (58 loc) · 1.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[package]
name = "breezy"
version = { workspace = true }
authors = [ "Martin Packman <gzlist@googlemail.com>", "Jelmer Vernooij <jelmer@jelmer.uk>"]
edition = "2021"
default-run = "brz"
license = "GPL-2.0-or-later"
description = "Friendly distributed version control system"
repository = "https://github.com/breezy-team/breezy"
homepage = "https://www.breezy-vcs.org/"
documentation = "https://www.breezy-vcs.org/doc/"
include = [
"src/*.rs",
"breezy/main.rs",
"README.rst",
]
[workspace]
members = ["crates/*"]
[workspace.package]
version = "3.4.0"
[[bin]]
name = "brz"
path = "src/main.rs"
[lib]
[features]
default = ["i18n", "pyo3"]
i18n = ["dep:gettext"]
pyo3 = []
[dependencies]
pyo3 = { workspace = true, features = ["abi3"] }
gettext = { workspace = true, optional = true }
log = { workspace = true }
breezy-osutils = { path = "crates/osutils", version = ">=3.3.4" }
chrono = { workspace = true }
bazaar = { path = "crates/bazaar" }
percent-encoding = "2"
url = { workspace = true }
regex = "1"
inventory = "0.3"
lazy_static = "1.4"
once_cell = "1"
textwrap = ">=0.13"
serde_yaml = "0.9"
serde = { version = "1", features = ["derive"]}
encoding = "0.2.33"
[target.'cfg(unix)'.dependencies]
nix = { workspace = true, features = ["fs"] }
[target.'cfg(windows)'.dependencies]
dirs = "6"
[workspace.dependencies]
nix = ">=0.26"
pyo3 = ">=0.26,<0.28"
pyo3-filelike = "0.5.0"
chrono = { version = "0.4", default-features = false, features = ["std", "clock"] }
url = "2"
log = "0.4"
whoami = { version = "1", default-features = false }
gettext = { version = "0.4.0" }