-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
47 lines (39 loc) · 1.17 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
[workspace]
members = ["xtask/", "crates/*"]
resolver = "2"
[workspace.package]
rust-version = "1.81"
edition = "2021"
license = "MIT OR Apache-2.0"
authors = ["Victor Pogor"]
repository = "https://github.com/victor-pogor/rust-off"
[profile.dev]
debug = "full" # This is the default.
incremental = true
# opt-level = 0 # 0 is faster, 3 is slower but more optimized.
# overflow-checks = false # Disable integer overflow checks.
[profile.dev.package]
# These speed up local tests.
serde.opt-level = 3
rowan.opt-level = 3
[profile.release]
incremental = true
# Set this to 1 or 2 to get more useful backtraces in debugger.
debug = 0
opt-level = 3
# non-local crates
[workspace.lints.clippy]
[workspace.dependencies]
# local crates
stdx = { path = "./crates/stdx", version = "0.0.0" }
pdfc-lexer = { path = "./crates/lexer", version = "0.0.0" }
edition = { path = "./crates/edition", version = "0.0.0" }
pdfc-parser = { path = "./crates/parser", version = "0.0.0" }
limit = { path = "./crates/limit", version = "0.0.0" }
rowan = { path = "./crates/rowan", version = "0.16.1" }
# non-local crates
anyhow = "1.0.97"
xshell = "0.2.7"
itertools = "0.14.0"
either = "1.15.0"
tracing = "0.1.41"