-
Notifications
You must be signed in to change notification settings - Fork 30
/
Cargo.toml
30 lines (26 loc) · 1.03 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
[package]
name = "webrtc-sdp"
version = "0.3.13"
authors = ["Nicolas Grunbaum <[email protected]>", "Nils Ohlmeier <[email protected]>"]
description = "webrtc-sdp parses strings in the format of the Session Description Protocol according to RFC4566. It specifically supports the subset of features required to support WebRTC according to the JSEP draft."
repository = "https://github.com/mozilla/webrtc-sdp"
readme = "README.md"
keywords = ["webrtc", "sdp", "jsep"]
categories = ["parsing", "network-programming"]
license = "MPL-2.0"
[badges]
travis-ci = { repository = "mozilla/webrtc-sdp", branch = "master" }
codecov = { repository = "mozilla/webrtc-sdp", branch = "master", service = "github" }
[features]
default = ["enhanced_debug"]
# debugging output
enhanced_debug = []
# serializability
serialize = ["serde", "serde_derive"]
[dependencies]
log = {version = "0.4"}
serde = {version = "1.0" , optional = true}
serde_derive = {version = "1.0" , optional = true}
url = {version="2.1.0"}
[dev-dependencies]
serde_json = {version = "1.0"}