forked from rustshop/flakebox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
34 lines (29 loc) · 823 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
[workspace]
members = [ "flakebox-bin" ]
resolver = "2"
[workspace.package]
version = "0.1.0"
authors = ["Dawid Ciężarkiewicz <[email protected]>"]
edition = "2021"
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"]
[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