aboutsummaryrefslogtreecommitdiffstats
path: root/halt/Cargo.toml
blob: 14c75e090eb69ae3ed81627c790a87d4f42f0eea (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[package]
name = "halt"
version = "0.1.0"
authors = ["Gustav Sörnäs <gustav@sornas.net>"]
edition = "2018"

[lib]
name = "halt"
crate-type = ["staticlib"]

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[profile.dev]
panic = "abort"

[profile.release]
panic = "abort"
lto = true

[dependencies.libc]
version = "0.2"
default-features = false
features = ["extra_traits"]