-
Notifications
You must be signed in to change notification settings - Fork 24
/
Cargo.toml
63 lines (55 loc) · 1.45 KB
/
Cargo.toml
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
[package]
name = "breezy"
version = { workspace = true }
authors = [ "Martin Packman <[email protected]>", "Jelmer Vernooij <[email protected]>"]
edition = "2021"
default-run = "brz"
license = "GPL-2.0+"
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/*"]
[workspace.package]
version = "3.4.0"
[[bin]]
name = "brz"
path = "breezy/main.rs"
[lib]
[features]
default = ["i18n", "pyo3"]
i18n = ["dep:gettext-rs"]
pyo3 = []
[dependencies]
pyo3 = { workspace = true }
gettext-rs = { version = "0.7", optional = true }
log = { workspace = true }
breezy-osutils = { path = "crates/osutils", version = ">=3.3.4" }
chrono = { workspace = true }
bazaar = { path = "crates/bazaar" }
breezy-graph = { path = "crates/graph" }
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"]}
[target.'cfg(unix)'.dependencies]
nix = { workspace = true, features = ["fs"] }
[workspace.dependencies]
nix = ">=0.26"
pyo3 = ">=0.20"
pyo3-filelike = "0.2.0"
chrono = { version = "0.4", default-features = false, features = ["std", "clock"] }
url = "2"
log = "0.4"
whoami = { version = "1", default-features = false }