-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
51 lines (47 loc) · 1.3 KB
/
Cargo.toml
File metadata and controls
51 lines (47 loc) · 1.3 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
[package]
name = "bardcast"
version = "0.2.0"
authors = ["Paul Bonnen <hal7df@gmail.com>"]
license = "GPL-3.0-or-later"
edition = "2021"
rust-version = "1.70.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = ["pulse", "wav"]
pulse = ["dep:libpulse-binding", "dep:itertools"]
wav = ["dep:wave_stream"]
[dependencies]
async-io = "2.3.1"
async-ringbuf = "0.1.2"
async-trait = "0.1.60"
byteorder = "1.4.3"
clap = { version = "3.2.22", features = ["cargo", "derive"] }
configparser = "3.0.2"
dashmap = "5.4.0"
futures = "0.3.25"
itertools = { version = "0.11", optional = true }
libpulse-binding = { version = "2.26.0", optional = true }
log = "0.4.17"
regex = "1.6.0"
ringbuf = "0.3.2"
simple_logger = { version = "4.0.0", features = ["timestamps","colored","stderr","threads"] }
songbird = { version = "0.3.2", features = ["serenity-rustls"] }
stream-flatten-iters = "0.2.0"
time = { version = "0.3.17", features = ["local-offset"] }
tokio = { version = "~1.28", features = ["full"] }
wave_stream = { version = "0.3.0", optional = true }
[dependencies.serenity]
version = "0.11.5"
default-features = false
features = [
"builder",
"cache",
"chrono",
"client",
"gateway",
"model",
"http",
"utils",
"rustls_backend",
"voice"
]