forked from jmgao/pore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
53 lines (41 loc) · 1012 Bytes
/
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
[package]
name = "pore"
version = "0.1.17"
authors = ["Josh Gao <[email protected]>"]
edition = "2018"
license = "Apache-2.0"
description = "a performance oriented reimplementation of repo"
repository = "https://github.com/jmgao/pore"
[dependencies]
anyhow = "1.0"
indoc = "1.0"
tracing = "^0.1.40"
serde = "1.0"
serde_yaml = "0.8"
serde_derive = "1.0"
toml = "0.5"
regex = "1"
serde_regex = "1"
quick-xml = "^0.36.0"
clap = { version = "4.0.32", features = ["derive", "cargo"] }
maplit = "1.0.2"
chrono = "0.4.19"
dirs = "4.0.0"
shellexpand = "2.1.0"
pathdiff = "0.2.1"
url = "2.2.2"
walkdir = "2.3.2"
fs4 = "^0.9.1"
filetime = "0.2.19"
git2 = { version = "0.18", features = ["vendored-libgit2"] }
atty = "0.2"
reqwest = { version = "0.11.9", features = ["blocking"] }
version-compare = "0.1.0"
console = "0.15.0"
progpool = "0.2"
tracing-chrome = "^0.7.2"
tracing-subscriber = "^0.3.18"
joinery = "3.0"
dashmap = "5.4.0"
[patch.crates-io]
progpool = { git = "https://github.com/tamird/progpool.git" }