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