[package] name = "webrtc-sdp" version = "0.3.13" authors = ["Nicolas Grunbaum ", "Nils Ohlmeier "] 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"}