forked from rxRust/rxRust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
68 lines (57 loc) · 2.09 KB
/
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[package]
authors = ["adoo <[email protected]>"]
categories = ["asynchronous"]
description = "A Rust implementation of Reactive Extensions."
documentation = "https://docs.rs/rxrust/"
edition = "2021"
homepage = "https://github.com/rxRust/rxRust"
keywords = ["reactivex", "rx", "frp"]
license = "MIT"
name = "rxrust"
readme = "README.md"
repository = "https://github.com/rxRust/rxRust"
version = "1.0.0-beta.6"
[dependencies]
once_cell = "1.17.1"
pin-project-lite = "0.2.9"
smallvec = "1.4.2"
[dependencies.futures]
version = "0.3.25"
[dependencies.tokio]
features = ["rt-multi-thread", "rt"]
optional = true
version = "1.0"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
futures-time = {version="3.0.0", optional=true}
[target.'cfg(target_arch = "wasm32")'.dependencies]
wasm-bindgen-futures = "0.4.29"
[target.'cfg(target_arch = "wasm32")'.dependencies.gloo-timers]
features = ["futures"]
version = "0.2.5"
[features]
default = ["futures-scheduler", "timer"]
futures-scheduler = ["futures/thread-pool"]
tokio-scheduler = ["tokio"]
timer = ["futures-time"]
[dev-dependencies]
bencher = "0.1.5"
float-cmp = "0.9.0"
wasm-bindgen-test = "0.3.29"
[target.'cfg(target_arch = "wasm32")'.dev-dependencies]
tokio = {version = "1.0", features = ["rt", "macros"]}
[target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies]
tokio = {version = "1.0", features = [
"rt",
"macros",
"time",
"rt-multi-thread",
]}
[package.metadata.release]
pre-release-replacements = [
{file = "README.md", search = "rxrust = .*", replace = "{{crate_name}} = \"{{version}}\""},
{file = "CHANGELOG.md", search = "Unreleased", replace = "{{version}}"},
{file = "CHANGELOG.md", search = "\\.\\.\\.HEAD", replace = "...{{tag_name}}", exactly = 1},
{file = "CHANGELOG.md", search = "ReleaseDate", replace = "{{date}}"},
{file = "CHANGELOG.md", search = "<!-- next-header -->", replace = "<!-- next-header -->\n\n## [Unreleased] - ReleaseDate", exactly = 1},
{file = "CHANGELOG.md", search = "<!-- next-url -->", replace = "<!-- next-url -->\n[Unreleased]: https://github.com/rxRust/rxRust/compare/{{tag_name}}...HEAD", exactly = 1},
]