-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
65 lines (55 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
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
[package]
name = "pi"
version = "0.1.0"
authors = ["mrrbrilliant <[email protected]>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
# [[bin]]
# name = "store"
# path = "src/bin/store.rs"
#[[bin]]
#name = "converter"
#path = "bin/converter.rs"
# [[bin]]
# name = "down"
# path = "bin/down.rs"
[[example]]
name = "pitree"
path = "examples/pitree.rs"
[[bin]]
name = "bin-repo"
path = "src/bin/bin-repo.rs"
[[bin]]
name = "source-repo"
path = "src/bin/source-repo.rs"
[[bin]]
name = "server"
path = "src/bin/server.rs"
[dependencies]
actix-files = "*"
actix-web = "*"
anyhow = "*"
bzip2 = "*"
chrono = "*"
colored = "*"
error-chain = "*"
flate2 = { version = "*", features = ["tokio"] }
git2 = "*"
indicatif = "*"
lazy_static = "*"
num_cpus = "*"
reqwest = "0.11.2"
semver = "*"
serde = {version = "*", features = ["derive"]}
serde_yaml = "*"
sha2 = "*"
solvent = "*"
subprocess = "*"
tar = "*"
text-diff = "*"
tokio = { version = "1.3.0", features = ["macros", "fs", "io-util", "rt-multi-thread"] }
url = "*"
walkdir = "*"
xz2 = "*"
zip = "0.5.10"
zstd = "*"