-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
55 lines (47 loc) · 1.09 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
[workspace]
members = [
"tephra",
"tephra-combinator",
"tephra-error",
"tephra-span",
"tephra-tracing",
]
[workspace.package]
version = "0.0.232"
authors = ["Skylor R Schermer <skyschermer@gmail.com>"]
description = "Tephra parser combinator library"
homepage = "https://github.com/solarretrace/tephra-rs"
repository = "https://github.com/solarretrace/tephra-rs"
license = "MIT or Apache-2.0"
readme = "readme.md"
edition = "2021"
keywords = ["tephra"]
categories = ["parsing"]
exclude = [
"*.sublime-project",
"*.sublime-workspace",
".trace"]
# The development profile, used for `cargo build`
[profile.dev]
opt-level = 0
debug = false
rpath = false
lto = false
debug-assertions = true
incremental = true
overflow-checks = true
# Development profile overrides, ensure dependent crates run fast.
[profile.dev.package."*"]
opt-level = 3
debug-assertions = false
codegen-units = 1
# The release profile, used for `cargo build --release`
[profile.release]
opt-level = 3
debug = false
rpath = false
lto = "fat"
debug-assertions = false
codegen-units = 1
incremental = false
overflow-checks = true