-
-
Notifications
You must be signed in to change notification settings - Fork 27
/
Cargo.toml
83 lines (73 loc) · 1.91 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
[package]
name = "amber"
version = "0.6.0"
authors = ["[email protected]"]
repository = "https://github.com/dalance/amber"
keywords = ["search", "replace"]
categories = ["command-line-utilities", "development-tools"]
license = "MIT"
readme = "README.md"
description = "A code search and replace tool"
edition = "2021"
[badges]
travis-ci = { repository = "dalance/amber" }
appveyor = { repository = "dalance/amber", branch = "master", service = "github" }
codecov = { repository = "dalance/amber", branch = "master", service = "github" }
[[bin]]
name = "ambr"
path = "src/ambr.rs"
[[bin]]
name = "ambs"
path = "src/ambs.rs"
[features]
sse = []
statistics = []
[dependencies]
crossbeam = "0.8"
ctrlc = "3"
directories = "5.0.1"
filetime = "0.2"
getch = "0.3"
glob = "0.3"
ignore = "0.4"
lazy_static = "1"
memmap = "0.7"
num_cpus = "1"
regex = "1"
rand = "0.8"
rlibc = "1"
serde = {version = "1.0", features = ["derive"]}
structopt = "0.3"
tempfile = "3"
term = "1.0"
time = "0.3"
toml = "0.8"
unicode-width = "0.2"
[target.'cfg(not(target_os = "windows"))'.dependencies]
termios = "0.3"
[profile.dev]
opt-level = 0
debug = true
rpath = false
lto = false
debug-assertions = true
codegen-units = 1
[profile.release]
opt-level = 3
debug = false
rpath = false
lto = true
debug-assertions = false
codegen-units = 1
[profile.test]
opt-level = 3
debug = false
rpath = false
lto = false
debug-assertions = false
codegen-units = 1
[package.metadata.release]
pre-release-commit-message = "Prepare to v{{version}}"
post-release-commit-message = "Start next development iteration v{{version}}"
tag-message = "Bump version to {{version}}"
tag-prefix = ""