blob: 0e2072e71a8e34730ff0147633ac3f7c83296447 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
[package]
name = "pppoe"
version = "0.1.0"
authors = ["Istvan Ruzman <istvan@ruzman.eu>", "HimbeerserverDE <himbeerserverde@gmail.com>"]
license = "Apache-2.0 OR MIT"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
libc = "0.2"
pppoe-sys = { path = "pppoe-sys", optional = true }
byteorder = { version = "1", default-features = false }
mio = { version = "0.6", optional = true }
rand = "0.8.5"
[features]
default = []
async = ["mio"]
socket = ["pppoe-sys"]
tr101 = []
|