-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
31 lines (28 loc) · 864 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
[package]
name = "discortp"
version = "0.6.0"
license = "ISC"
homepage = "https://github.com/FelixMcFelix/discortp"
repository = "https://github.com/FelixMcFelix/discortp.git"
authors = ["Kyle Simpson <kyleandrew.simpson@gmail.com>"]
keywords = ["rtp", "protocol", "parser"]
categories = ["encoding", "multimedia::encoding", "network-programming", "parser-implementations"]
description = "Lightweight, flexible Real-time Transport Protocol (RTP) parsing library."
readme = "README.md"
documentation = "https://docs.rs/discortp"
edition = "2021"
rust-version = "1.65.0"
[dependencies]
pnet_macros = "0.34"
pnet_macros_support = "0.34"
[features]
default = ["pnet", "rtp", "rtcp"]
demux = []
discord = []
discord-full = ["default", "demux", "discord"]
pnet = []
rtp = []
rtcp = []
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]