-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
45 lines (40 loc) · 1.15 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
[workspace]
members = ["crates/*"]
resolver = "2"
[workspace.package]
version = "0.1.0"
authors = ["Dominik Nakamura <[email protected]"]
edition = "2021"
rust-version = "1.80"
readme = "README.md"
homepage = "https://github.com/dnaka91/mabo"
repository = "https://github.com/dnaka91/mabo"
license = "MIT"
[workspace.lints.rust]
unsafe_code = "forbid"
rust_2018_idioms = { level = "deny", priority = -1 }
missing_docs = "warn"
[workspace.lints.clippy]
all = { level = "deny", priority = -1 }
pedantic = { level = "warn", priority = -1 }
clone_on_ref_ptr = "warn"
[workspace.dependencies]
anstream = "0.6.18"
anstyle = "1.0.10"
anyhow = "1.0.93"
clap = { version = "4.5.21", features = ["derive", "wrap_help"] }
glob = "0.3.1"
indoc = "2.0.5"
insta = { version = "1.41.1", features = ["glob"] }
miette = { version = "7.3.0", default-features = false }
mimalloc = "0.1.43"
proc-macro2 = { version = "1.0.92", default-features = false }
quote = { version = "1.0.37", default-features = false }
rustc-hash = "2.0.0"
serde = { version = "1.0.215", features = ["derive"] }
serde_json = "1.0.133"
syn = "2.0.89"
thiserror = "2.0.3"
[profile.release]
lto = "thin"
strip = true