-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
81 lines (69 loc) · 2.31 KB
/
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
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
69
70
71
72
73
74
75
76
77
78
79
80
81
[package]
name = "vulcast-firmware"
authors = ["Callum"]
version = "0.1.0"
edition = "2018"
description = "Vulcast firmware"
readme = "README.md"
license = "TODO"
[package.metadata.deb]
depends = "$auto, systemd"
extended-description = "Firmware for Vulcast device"
section = "admin"
priority = "optional"
assets = [
[
"target/release/vulcast-firmware",
"/usr/bin/vulcast-firmware",
"755",
],
[
"debian/vulcast-firmware.service",
"/lib/systemd/system/vulcast-firmware.service",
"644",
],
[
"debian/vulcast.conf",
"/etc/vulcast-firmware/vulcast.conf",
"644",
],
]
maintainer-scripts = "debian/scripts"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# mediasoup = { version = "0.8", git = "https://github.com/netdex/mediasoup", branch = "rust-async-trait-send" }
# controller-emulator = { version = "*", git = "ssh://[email protected]/vulcan-fydp/controller-emulator" }
vulcast-rtc = { version = "*", git = "ssh://[email protected]/vulcan-fydp/vulcast-rtc" }
# vulcast-rtc = { version = "*", path = "../vulcast-rtc/vulcast-rtc" }
controller-emulator = { version = "*", git = "ssh://[email protected]/vulcan-fydp/controller-emulator" }
# once_cell = "1.8.0"
log = "0.4.14"
env_logger = "0.8.3"
serde = { version = "1.0.124", features = ["derive"] }
serde_json = "1.0.64"
uuid = { version = "0.8.2", features = ["serde", "v4"] }
rust-ini = "0.17.0"
# thiserror = "1.0"
anyhow = "1.0"
# bimap = "0.6.1"
# derive_more = "0.99.0"
clap = { version = "3.0.13", features = ["derive"] }
tokio = { version = "1", features = ["macros", "rt-multi-thread", "sync", "io-std"] }
tokio-stream = { version = "0.1", features = ["sync"] }
futures = "0.3"
async-trait = "0.1.48"
graphql_client = "0.10"
rustls = { version = "0.20", features = ["dangerous_configuration"] }
webpki = "0.22.0"
http = "0.2"
tokio-tungstenite = { version = "0.16", features = ["rustls-tls-webpki-roots"] }
reqwest = { version = "0.11.4", default_features = false, features = [
"json",
"rustls-tls",
] }
graphql-ws = { git = "ssh://[email protected]/Netdex/graphql-ws.git", version = "0.4" }
atty = "0.2"
[build-dependencies]
built = "0.5"
schema = { git = "ssh://[email protected]/vulcan-fydp/schema.git", version = "0.0.40" }
[dev-dependencies]