-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
68 lines (55 loc) · 1.33 KB
/
Cargo.toml
File metadata and controls
68 lines (55 loc) · 1.33 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
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]
name = "vmcircbuffer"
version = "0.0.14"
authors = ["Bastian Bloessl <mail@bastibl.net>"]
edition = "2021"
license = "Apache-2.0"
homepage = "https://www.futuresdr.org"
repository = "https://github.com/futuresdr/vmcircbuffer/"
readme = "README.md"
description = "Double Mapped Circular Buffer"
keywords = ["sdr", "dsp", "real-time", "async"]
categories = ["asynchronous", "concurrency", "hardware-support", "science"]
[package.metadata.docs.rs]
all-features = true
[features]
default = []
async = ["futures", "generic"]
sync = ["generic"]
nonblocking = ["generic"]
generic = []
lockfree = []
[[example]]
name = "sdr"
required-features = ["sync"]
[[example]]
name = "tags"
required-features = ["generic"]
[[test]]
name = "async"
required-features = ["async"]
[[test]]
name = "sync"
required-features = ["sync"]
[[test]]
name = "nonblocking"
required-features = ["nonblocking"]
[[test]]
name = "lockfree"
required-features = ["lockfree"]
[[test]]
name = "tags"
required-features = ["generic"]
[dependencies]
futures = { version = "0.3", optional = true }
once_cell = "1.21"
slab = "0.4"
spin = "0.10"
thiserror = "2.0"
[target.'cfg(unix)'.dependencies]
libc = "0.2"
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3", features = ["sysinfoapi", "winbase", "handleapi", "memoryapi"] }
[dev-dependencies]
rand = "0.10"
smol = "2.0"