-
Notifications
You must be signed in to change notification settings - Fork 37
/
Cargo.toml
44 lines (38 loc) · 1013 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
35
36
37
38
39
40
41
42
43
44
[package]
name = "futures-signals"
version = "0.3.34"
authors = ["Pauan <[email protected]>"]
description = "Zero cost FRP signals using the futures crate"
repository = "https://github.com/Pauan/rust-signals"
homepage = "https://github.com/Pauan/rust-signals"
readme = "README.md"
license = "MIT"
keywords = ["signal", "reactive", "frp", "futures"]
categories = ["asynchronous", "concurrency", "data-structures"]
edition = "2018"
[features]
default = ["debug", "serde"]
debug = ["log"]
[dependencies]
futures-core = "0.3.0"
futures-channel = "0.3.0"
futures-util = "0.3.0"
discard = "1.0.3"
pin-project = "1.0.2"
gensym = "0.1.0"
[dependencies.log]
version = "0.4.14"
optional = true
[dependencies.serde]
version = "1.0.140"
optional = true
features = ["derive"]
[dev-dependencies]
futures-executor = "0.3.0"
pin-utils = "0.1.0"
once_cell = "1.10.0"
indoc = "2.0.1"
criterion = { version = "0.4.0", features = [] }
[[bench]]
name = "channel"
harness = false