forked from Televiska/rsip
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
34 lines (29 loc) · 872 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
33
34
[package]
name = "rsip"
version = "0.4.0"
authors = ["Filippos Vasilakis <vasilakisfil@gmail.com>"]
edition = "2018"
description = "SIP Rust library, parser & generator of SIP"
repository = "https://github.com/vasilakisfil/rsip"
documentation = "https://docs.rs/rsip"
keywords = ["sip", "3261", "session", "voip", "webrtc"]
categories = ["parser-implementations", "parsing", "network-programming"]
license-file = "LICENSE"
[workspace]
members = [
"rsip-derives",
]
[dependencies]
uuid = { version = "0.8.1", features = ["v4"] }
bytes = "1.0.1"
nom = { version = "7.1.0", features = ["alloc"] }
rsip-derives = { version = "0.4.0", path = "./rsip-derives" }
md-5 = "0.9.1"
sha2 = "0.9.5"
testing-utils = { version = "0.1.1", optional = true }
bstr = "0.2.17"
[features]
test-utils = ["testing-utils"]
[dev-dependencies]
quote = "1.0.9"
rand = { version = "0.8.4" }