-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
37 lines (34 loc) · 1.12 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
31
32
33
34
35
36
37
[package]
name = "dvb-gse"
version = "0.6.2"
edition = "2021"
authors = ["Daniel Estevez <[email protected]>"]
description = "DVB-GSE (Digital Video Brodcast Generic Stream Encapsulation)"
license = "MIT OR Apache-2.0"
homepage = "https://github.com/daniestevez/dvb-gse/"
repository = "https://github.com/daniestevez/dvb-gse/"
keywords = ["dvb", "dvb-s2", "gse", "satellite", "network"]
categories = ["aerospace::space-protocols", "command-line-utilities",
"multimedia", "network-programming", ]
exclude = ["/.github"]
[features]
default = ["cli"]
# Enables the CLI application.
cli = ["anyhow", "clap", "env_logger", "libc", "tun-tap"]
[dependencies]
anyhow = { version = "1", features = ["std"], optional = true }
bitvec = "1"
bytes = "1.2"
clap = { version = "4", features = ["derive"], optional = true }
crc = "3"
env_logger = { version = "0.11", optional = true }
faster-hex = "0.9"
lazy_static = "1.4"
libc = { version = "0.2", optional = true }
log = "0.4"
num_enum = "0.7"
thiserror = "1"
tun-tap = { version = "0.1", default-features = false, optional = true }
[dev-dependencies]
hex-literal = "0.4"
proptest = "1"