This repository has been archived by the owner on Aug 25, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
113 lines (106 loc) · 2.85 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
[package]
name = "medea"
version = "0.3.0-dev"
edition = "2018"
resolver = "2"
description = "Medea media server"
authors = ["Instrumentisto Team <[email protected]>"]
license = "MPL-2.0"
documentation = "https://docs.rs/medea"
homepage = "https://github.com/instrumentisto/medea"
repository = "https://github.com/instrumentisto/medea"
readme = "README.md"
keywords = ["medea", "media-server"]
categories = ["multimedia"]
include = ["/src/", "/Cargo.*", "/CHANGELOG.md", "/LICENSE.md", "/README.md"]
[workspace]
members = [
"crates/medea-coturn-telnet-client",
"crates/medea-macro",
"crates/medea-reactive",
"e2e",
"jason",
"mock/control-api",
"proto/client-api",
"proto/control-api",
]
[profile.release]
lto = "thin"
codegen-units = 1
[profile.release.package.medea-jason]
opt-level = "s" # Tell rustc to optimize for small code size.
[profile.dev]
split-debuginfo = "unpacked"
[dependencies]
actix = "0.12"
actix-http = "=3.0.0-beta.8"
actix-web = "=4.0.0-beta.8"
actix-web-actors = "=4.0.0-beta.6"
argon2 = { version = "0.8", package = "rust-argon2", default-features = false }
async-trait = "0.1"
bytes = "1.0"
chrono = "0.4"
config = "0.11"
derive_more = "0.99"
dotenv = "0.15"
failure = "0.1"
futures = "0.3"
humantime-serde = "1.0"
medea-client-api-proto = { version = "0.3", features = ["medea"] }
medea-control-api-proto = { version = "0.3", path = "proto/control-api" }
medea-macro = "0.2"
rand = "0.8"
rust-crypto = "0.2"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.8"
slog-async = "2.5"
slog-envlogger = "2.2"
slog-json = "2.3"
slog-scope = "4.3"
slog-stdlog = "4.0"
smart-default = "0.6"
subtle = { version = "2.2", default-features = false }
tokio = { version = "1.5", features = ["signal", "time"] }
toml = "0.5"
tonic = "0.4"
url = "2.1"
[dependencies.deadpool]
version = "0.8"
default-features = false
features = ["managed", "rt_tokio_1"]
[dependencies.deadpool-redis]
version = "0.8"
default-features = false
features = ["rt_tokio_1"]
[dependencies.medea-coturn-telnet-client]
#version = "0.1"
path = "crates/medea-coturn-telnet-client"
features = ["pool"]
[dependencies.slog]
version = "2.5"
features = ["release_max_level_trace", "max_level_trace"]
[dependencies.redis]
package = "redis"
version = "0.20"
default-features = false
features = ["tokio-comp"]
[dev-dependencies]
actix-codec = "0.4"
actix-http-test = "=3.0.0-beta.4"
actix-rt = "2.2"
actix-service = "2.0"
awc = "=3.0.0-beta.7"
derive_builder = "0.10"
function_name = "0.2"
hyper = { version = "0.14", features = ["server"] }
lazy_static = "1.4"
mockall = "0.10"
serial_test = "0.5"
tempfile = "3.1"
tokio = { version = "1.5", features = ["fs", "macros", "rt-multi-thread"] }
tokio-stream = "0.1"
tokio-util = "0.6"
[[test]]
name = "integration"
path = "tests/integration/main.rs"