forked from rustfixbot/pulsar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
33 lines (28 loc) · 813 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
[package]
name = "pulseaudio"
description = "A native rust implementation of the PulseAudio protocol."
repository = "https://github.com/colinmarc/pulseaudio-rs"
edition = "2021"
version = "0.2.1"
authors = ["Colin Marc <[email protected]>", "Jonas Schievink <[email protected]>"]
license = "MIT"
[workspace]
members = ["patrace"]
[dependencies]
bitflags = "2.4.1"
byteorder = "1.5.0"
enum-primitive-derive = "0.3.0"
num-traits = "0.2.17"
thiserror = "1.0.51"
[dev-dependencies]
anyhow = "1.0.76"
assert_matches = "1.5.0"
hound = "3.5.1"
indicatif = "0.17.7"
mio = { version = "0.8.10", features = ["os-ext", "os-poll", "net"] }
mio-timerfd = "0.2.0"
pretty_assertions = "1.4.0"
[features]
_integration-tests = []
[patch.crates-io]
mio-timerfd = { git = "https://github.com/colinmarc/mio-timerfd.git" }