2014-12-23 11:24:40 +08:00
|
|
|
[package]
|
2016-04-14 21:47:34 +08:00
|
|
|
authors = ["edef <edef@edef.eu>"]
|
2015-04-16 20:06:57 +08:00
|
|
|
name = "fringe"
|
2016-08-31 01:46:29 +08:00
|
|
|
description = "safe, lightweight userland context switches"
|
2016-09-07 11:38:32 +08:00
|
|
|
version = "1.1.0"
|
2016-08-31 01:56:55 +08:00
|
|
|
license = "Apache-2.0/MIT"
|
2016-08-31 01:46:29 +08:00
|
|
|
homepage = "https://github.com/edef1c/libfringe"
|
|
|
|
repository = "https://github.com/edef1c/libfringe"
|
|
|
|
documentation = "https://edef1c.github.io/libfringe"
|
2015-04-23 07:14:01 +08:00
|
|
|
|
2016-07-16 09:19:45 +08:00
|
|
|
[target.'cfg(unix)'.dependencies]
|
2016-07-17 08:34:26 +08:00
|
|
|
libc = "0.2.14"
|
2016-04-14 21:49:37 +08:00
|
|
|
|
2016-08-31 01:43:51 +08:00
|
|
|
[dependencies.valgrind_request]
|
2016-01-04 22:32:03 +08:00
|
|
|
optional = true
|
2016-08-31 01:43:51 +08:00
|
|
|
version = "1.0.0"
|
2016-04-14 21:47:34 +08:00
|
|
|
|
2016-07-16 09:22:41 +08:00
|
|
|
[dev-dependencies]
|
|
|
|
simd = "0.1"
|
2016-04-14 21:47:34 +08:00
|
|
|
|
|
|
|
[features]
|
2016-08-19 21:58:45 +08:00
|
|
|
default = ["alloc", "valgrind"]
|
|
|
|
alloc = []
|
2016-08-31 01:43:51 +08:00
|
|
|
valgrind = ["valgrind_request"]
|
2016-07-16 09:22:41 +08:00
|
|
|
|
|
|
|
# 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
|