-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
37 lines (35 loc) · 1.22 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
[workspace]
resolver = "2"
members = [
"media_gateway_client",
"media_gateway_common",
"media_gateway_server"
]
[workspace.dependencies]
savant_core = { git = "https://github.com/insight-platform/savant-rs", tag = "0.3.5" }
savant-protobuf = { git = "https://github.com/insight-platform/savant-protobuf", tag = "0.2.0" }
serde_json = "1"
serde_yaml = "0.9.34-deprecated"
serde = { version = "1", features = ["derive"] }
anyhow = "1"
twelf = { version = "0.15", features = ["json", "env", "shellexpand"], default-features = false }
rand = "0.8.5"
tokio = { version = "1", features = ["rt-multi-thread", "signal", "sync", "test-util"] }
tokio-timerfd = "0.2"
log = "0.4.21"
env_logger = "0.11"
actix-web = { version = "4", features = ["openssl"] }
actix-protobuf = "0.10"
actix-web-httpauth = "0.8.2"
openssl = "0.10"
mockall = "0.12"
[workspace.package]
version = "0.2.0"
edition = "2021"
authors = ["Ivan Kudriavtsev <[email protected]>", "Ksenia Vazhdaeva <[email protected]>"]
description = "Media Gateway (client and server)"
homepage = "https://github.com/insight-platform/MediaGateway"
repository = "https://github.com/insight-platform/MediaGateway"
readme = "README.md"
license = "BSL-1.1"
rust-version = "1.78"