-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
53 lines (50 loc) · 1.84 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
[package]
name = "atm0s-media-sip-gateway"
version = "0.1.0"
edition = "2021"
license = "MIT"
description = "SIP gateway for atm0s-media-server"
repository = "https://github.com/8xFF/atm0s-media-sip-gateway"
homepage = "https://github.com/8xFF/atm0s-media-sip-gateway"
[dependencies]
async-trait = "0.1.83"
clap = { version = "4.5.18", features = ["derive", "env"] }
derive_more = { version = "1.0.0", features = [
"from",
"display",
"deref",
"into",
] }
ezk-sdp-types = { git = "https://github.com/giangndm/ezk.git", rev = "e999d73902b44587600c557b60eddd18adf3517a" }
ezk-sip-auth = { git = "https://github.com/giangndm/ezk.git", rev = "e999d73902b44587600c557b60eddd18adf3517a" }
ezk-sip-core = { git = "https://github.com/giangndm/ezk.git", rev = "e999d73902b44587600c557b60eddd18adf3517a" }
ezk-sip-types = { git = "https://github.com/giangndm/ezk.git", rev = "e999d73902b44587600c557b60eddd18adf3517a" }
ezk-sip-ua = { git = "https://github.com/giangndm/ezk.git", rev = "e999d73902b44587600c557b60eddd18adf3517a" }
ipnet = { version = "2.10.0", features = ["serde"] }
log = "0.4.22"
pin-project-lite = "0.2.14"
poem = { version = "3.1.0", features = ["websocket"] }
poem-openapi = { version = "5.1.1", features = ["swagger-ui"] }
rand = "0.8.5"
reqwest = { version = "0.12.7", features = ["json"] }
serde = "1.0.210"
spin = "0.9.8"
thiserror = "1.0.64"
tokio = { version = "1.40.0", features = ["full"] }
tracing-subscriber = "0.3.18"
bytes = "1.7"
serde_json = "1.0.128"
futures-util = "0.3.30"
bytesstr = "1.0.2"
jwt-simple = { version = "0.12", default-features = false, features = [
"pure-rust",
] }
anyhow = "1.0"
atm0s-small-p2p = { git = "https://github.com/8xFF/atm0s-small-p2p.git", rev = "2896a1f0d78e597105a2aa0d256a2a31dbf4809f" }
rustls = "0.23"
prost = "0.13"
[build-dependencies]
prost-build = "0.13"
[features]
default = []
build-protobuf = []