forked from deepgram/dgmrcp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
32 lines (29 loc) · 823 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
[package]
name = "dgmrcp"
version = "0.1.0"
authors = [
"Adam Sypniewski <[email protected]>",
"Anthony Deschamps <[email protected]>",
]
edition = "2018"
[lib]
crate-type = ["cdylib"]
# Dependencies for building the C library.
[build-dependencies]
bindgen = { version = "0.50.0", default-features = false }
[dependencies]
base64 = "0.12"
bytes = "0.5"
futures = "0.3"
http = "0.2"
itertools = "0.9"
log = "0.4"
reqwest = { version = "0.10", features = ["cookies", "json", "stream"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "1.0"
tokio = { version = "0.2", features = ["rt-core"] }
tokio-tungstenite = { version = "0.10", features = ["tls"] }
tungstenite = { version = "0.10", features = ["tls"] }
url = { version = "2.1", features = ["serde"] }
xml-rs = "0.8"