-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (32 loc) · 912 Bytes
/
Cargo.toml
File metadata and controls
39 lines (32 loc) · 912 Bytes
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
[workspace]
members = ["flakebox-bin"]
resolver = "2"
[workspace.package]
version = "0.1.0"
authors = ["Dawid Ciężarkiewicz <dpc@dpc.pw>"]
edition = "2024"
description = "Rust dev experience (DX) we can share and love."
documentation = "https://github.com/rustshop/flakebox"
readme = "README.md"
repository = "https://github.com/rustshop/flakebox"
license = "MPL-2.0"
keywords = ["nix", "tool", "dx"]
[workspace.lints.clippy]
literal_string_with_formatting_args = "deny"
dbg_macro = "deny"
[profile.dev]
[profile.ci]
debug = "line-tables-only"
inherits = "dev"
incremental = false
lto = "off"
[profile.release]
debug = "line-tables-only"
# Workaround: https://github.com/rust-lang/cargo/issues/12457 which causes
# https://github.com/ipetkov/crane/issues/370
[profile.dev.build-override]
debug = false
[profile.ci.build-override]
debug = false
[profile.release.build-override]
debug = false