-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (26 loc) · 748 Bytes
/
Cargo.toml
File metadata and controls
32 lines (26 loc) · 748 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
[package]
authors = ["edef <edef@edef.eu>"]
name = "fringe"
description = "safe, lightweight userland context switches"
version = "1.2.1"
license = "Apache-2.0/MIT"
homepage = "https://github.com/edef1c/libfringe"
repository = "https://github.com/edef1c/libfringe"
documentation = "https://edef1c.github.io/libfringe"
[target.'cfg(unix)'.dependencies]
libc = "0.2.14"
[dependencies.valgrind_request]
optional = true
version = "1.0.0"
[target.'cfg(unix)'.dev-dependencies]
packed_simd = "0.3.3"
[features]
default = ["alloc", "valgrind"]
alloc = []
valgrind = ["valgrind_request"]
# These apply only to tests within this library; assembly at -O0 is completely
# unreadable, so use -O1.
[profile.dev]
opt-level = 1
[profile.test]
opt-level = 1