-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
39 lines (34 loc) · 850 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
[package]
name = "asynk-strim"
version = "0.1.2"
edition = "2021"
# crates.io metadata
rust-version = "1.83"
description = "Lightweight stream generator library"
license = "MIT OR Apache-2.0"
repository = "https://github.com/aumetra/asynk-strim.git"
categories = ["asynchronous", "no-std", "no-std::no-alloc"]
keywords = ["async", "no_std", "stream"]
# Make crate as small as possible
include = [
"src/**/*.rs",
"Cargo.toml",
"README.md",
"LICENSE-APACHE",
"LICENSE-MIT",
]
[[bench]]
name = "bench"
harness = false
[dependencies]
futures-core = { version = "0.3.31", default-features = false }
pin-project-lite = "0.2.14"
[dev-dependencies]
async-fn-stream = "0.2.2"
async-stream = "0.3.6"
divan = "0.1.14"
futures-lite = { version = "2.3.0", default-features = false, features = [
"std",
] }
mimalloc = "0.1.43"
trybuild = "1.0.99"