-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathCargo.toml
More file actions
46 lines (40 loc) · 795 Bytes
/
Cargo.toml
File metadata and controls
46 lines (40 loc) · 795 Bytes
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
[package]
name = "snatch"
version = "0.1.3"
authors = ["Antonin Carette <antonin@derniercri.io>", "Jean-Serge Monbailly <jean-serge@derniercri.io>"]
description = "A simple and fast download accelerator"
repository = "https://github.com/derniercri/snatch"
license = "MIT"
[lib]
name = "libsnatch"
path = "src/lib.rs"
[[bin]]
name = "snatch"
path = "src/main.rs"
[dependencies]
ansi_term = "0.9.0"
clap = "2.20.0"
hyper = "0.9"
pbr = "1.0.0"
num_cpus = "1.0"
[profile.dev]
opt-level = 0
debug = true
rpath = false
lto = false
debug-assertions = true
panic = 'unwind'
[profile.release]
opt-level = 3
debug = false
rpath = false
lto = false
debug-assertions = false
panic = 'unwind'
[profile.test]
opt-level = 0
debug = true
rpath = false
lto = false
debug-assertions = true
panic = 'unwind'