-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
50 lines (45 loc) · 1.18 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
[package]
authors = ["Matthias Krüger <[email protected]>"]
edition = "2021"
license = "MIT/Apache-2.0"
name = "icemaker"
version = "0.1.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
chrono = {version = "0.4.31", default-features = false, features = ["alloc", "std", "clock"]}
clap = {version = "4.0.4", features = ["derive"]}
colored = "2.0.0"
ctrlc = "3.2.1"
diff = "0.1"
home = "0.5.3"
itertools = "0.11"
lazy_static = "1.4"
markov = "1.1"
once_cell = "1.13"
rand = "0.8"
rayon = "1.5.0"
regex = "1.5"
serde = {version = "1.0", features = ["derive"]}
serde_json = "1.0"
sha2 = "0.10"
tempdir = "0.3"
tree-sitter = {git = "https://github.com/tree-sitter/tree-sitter"}
tree-sitter-rust = {path = "../tree-sitter-rust"}
tree-splicer = {path = "../tree-splicer/crates/tree-splicer"}
walkdir = "2.3.1"
[profile.release]
#inherits="release"
codegen-units = 1
debug = false
incremental = false
lto = "thin"
[features]
# run without prlimit
ci = []
#faster compile with not as good performance (more cgus) for manual testing
[profile.fast]
codegen-units = 4
debug = false
incremental = false
inherits = "release"
lto = "thin"