-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathCargo.toml
37 lines (32 loc) · 922 Bytes
/
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
[workspace]
resolver = "2"
members = [
"crates/*"
]
[workspace.dependencies]
thiserror = "2.0.11"
serde_json = { features = ["preserve_order", "unbounded_depth"], version = "1.0.138" }
[workspace.package]
authors = ["Davy Duperron <yamafaktory@gmail.com>"]
categories = ["command-line-utilities", "filesystem"]
edition = "2021"
keywords = ["cli", "json", "terminal", "tool", "query"]
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/yamafaktory/jql"
version = "8.0.3"
[workspace.lints.rust]
missing_debug_implementations = "warn"
missing_docs = "warn"
nonstandard_style = { level = "deny", priority= -1 }
rust_2021_compatibility = { level = "forbid", priority= -1 }
unreachable_pub = "warn"
unsafe_code = "deny"
[workspace.lints.clippy]
all = "deny"
# https://github.com/rust-lang/cargo/issues/8264
[profile.release]
codegen-units = 1
lto = true
opt-level = 'z'
panic = 'abort'