forked from mozilla/webrtc-sdp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
30 lines (26 loc) · 1010 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
[package]
name = "webrtc-sdp"
version = "0.3.8"
authors = ["Nils Ohlmeier <[email protected]>"]
description = "This create 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.6"}
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"}