1[package] 2name = "sdp" 3version = "0.5.3" 4authors = ["Rain Liu <[email protected]>"] 5edition = "2021" 6description = "A pure Rust implementation of SDP" 7license = "MIT/Apache-2.0" 8documentation = "https://docs.rs/sdp" 9homepage = "https://webrtc.rs" 10repository = "https://github.com/webrtc-rs/sdp" 11rust-version = "1.63.0" 12 13[dependencies] 14url = "2.2" 15rand = "0.8.5" 16thiserror = "~1.0.10" 17substring = "1.4" 18 19[dev-dependencies] 20criterion = "0.4.0" 21 22[[bench]] 23name = "bench" 24harness = false 25