-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
36 lines (32 loc) · 1.12 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
[package]
name = "git-cvs-fast-import"
version = "0.1.1-alpha.0"
edition = "2018"
license = "Apache-2.0"
[workspace]
members = [ "comma-v", "eq-macro", "git-fast-import", "internal/process", "internal/state", "patchset", "rcs-ed" ]
[dev-dependencies]
tokio-test = "0.4.2"
[dependencies]
anyhow = "1.0.53"
async-recursion = "1.0.0"
comma-v = { path = "comma-v" }
# Temporarily the Git repo until the fix for
# https://github.com/tokio-rs/console/issues/180 lands in a release.
console-subscriber = { git = "https://github.com/tokio-rs/console" }
flexi_logger = { version = "0.22.3", features = ["async", "colors"] }
flume = "0.10.10"
git-cvs-fast-import-process = { path = "internal/process" }
git-cvs-fast-import-state = { path = "internal/state" }
git-fast-import = { path = "git-fast-import" }
log = "0.4.14"
num_cpus = "1.13.1"
parse_duration = "2.1.1"
patchset = { path = "patchset" }
rcs-ed = { path = "rcs-ed" }
structopt = "0.3.26"
tempfile = "3.3.0"
thiserror = "1.0.30"
tokio = { version = "1.16.1", features = ["fs", "io-util", "macros", "process", "rt-multi-thread", "signal", "sync", "time", "tracing"] }
walkdir = "2.3.2"
[features]