-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
26 lines (23 loc) · 810 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
[package]
name = "unrecurse"
version = "0.1.0"
edition = "2021"
authors = ["Konstantin Anisimov <rrevenantt@gmail.com>"]
homepage = "https://github.com/rrevenantt/unrecurse"
repository = "https://github.com/rrevenantt/unrecurse"
documentation = "https://docs.rs/unrecurse"
description = "Helper crate for rewriting your recursive code in iterative way"
keywords = ["stack","recursive"]
categories = ["data-structures"]
readme = "README.md"
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
arrayvec = "0.7"
futures-util = { version = "0.3.21", default-features = false, features = ["async-await"] }
futures-executor = "0.3.21"
#aliasable = "0.1"
#qcell = "0.5.0"
#async_fn_traits = "0.1.1"
[dev-dependencies]
quickcheck = "1.0.3"