-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
67 lines (61 loc) · 1.6 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
64
65
66
67
[package]
name = "svn2git"
version = "0.2.1"
authors = ["Eduardo Sánchez Muñoz <[email protected]>"]
edition = "2021"
rust-version = "1.77"
description = "A Subversion-to-Git repository converter"
repository = "https://github.com/eduardosm/svn2git"
license = "MIT OR Apache-2.0"
keywords = ["converter", "git", "repository", "subversion", "svn"]
categories = ["development-tools"]
exclude = ["/.github", "/book", "/ci", ".gitignore"]
publish = true
[[test]]
name = "convert"
path = "convert-tests/main.rs"
harness = false
[dependencies]
bzip2 = { version = "0.4.4", features = ["static"] }
chrono = "0.4.37"
clap = { version = "4.5.21", features = ["derive"] }
crossterm = "0.28.1"
cyclic-poly-23 = "0.3.1"
flate2 = "1.0.35"
gix-actor = "0.33.1"
gix-date = "0.9.2"
gix-features = { version = "0.39.1", features = ["fast-sha1"] }
gix-hash = "0.15.1"
gix-object = "0.46.0"
gix-pack = "0.55.0"
hashbrown = "0.15.2"
indoc = "2.0.5"
liblzma = { version = "0.3.5", features = ["static"] }
lru-mem = "0.3.0"
lz4_flex = "0.11.3"
minijinja = "2.5.0"
serde = { version = "1.0.215", features = ["derive"] }
smallvec = "1.13.2"
toml = "0.8.19"
tracing = "0.1.40"
tracing-subscriber = "0.3.18"
uuid = "1.11.0"
zstd = "0.13.2"
[dependencies.regex-automata]
version = "0.4.9"
default-features = false
features = ["dfa", "hybrid", "meta", "nfa", "perf", "std", "syntax"]
[dependencies.regex-syntax]
version = "0.8.5"
default-features = false
features = ["std"]
[dev-dependencies]
gix = "0.68.0"
libtest-mimic = "0.8.1"
rand = "0.8.5"
serde_yaml = "0.9.34"
[profile.release]
strip = "debuginfo"
panic = "abort"
lto = true
codegen-units = 1