forked from embassy-rs/atomic-pool
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (30 loc) · 1.1 KB
/
Cargo.toml
File metadata and controls
33 lines (30 loc) · 1.1 KB
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
[package]
name = "async-pool"
version = "1.3.0"
authors = ["Daniel Stuart <daniel.stuart14@gmail.com>"]
description = "Statically allocated pool providing a std-like Box, with async functionality."
repository = "https://github.com/danielstuart14/async-pool"
edition = "2021"
readme = "README.md"
license = "MIT OR Apache-2.0"
categories = ["embedded", "no-std", "concurrency", "memory-management"]
[dependencies]
portable-atomic = { version = "1.13.1" }
as-slice-01 = { package = "as-slice", version = "0.1.5" }
as-slice-02 = { package = "as-slice", version = "0.2.1" }
stable_deref_trait = { version = "1.2.1", default-features = false }
embassy-sync = "0.8.0"
# Used by async tests and examples
[dev-dependencies]
embassy-executor = { version = "0.10.0", features = [
"platform-std",
"executor-thread",
"embassy-time-driver",
] }
embassy-time = { version = "0.5.1", features = ["std"] }
embassy-futures = "0.1.2"
tokio = { version = "1", features = ["full"] }
critical-section = { version = "1.2.0", features = ["std"] }
[features]
default = []
_enable_critical_section = ["portable-atomic/critical-section"]