26 lines
663 B
TOML
26 lines
663 B
TOML
[package]
|
|
name = "livebox"
|
|
version = "0.9.3"
|
|
edition = "2021"
|
|
description = "A library to gather data from Livebox 4 & 5."
|
|
license = "GPL-3.0"
|
|
keywords = [ "router", "API", "async" ]
|
|
repository = "https://gitlab.com/lovallat/livebox-rs"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[badges]
|
|
maintenance = { status = "experimental" }
|
|
|
|
[dependencies]
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
hyper = { version = "0.14", features = ["full"] }
|
|
tokio = { version = "1", features = ["full"] }
|
|
log = "0.4.17"
|
|
env_logger = "0.9.0"
|
|
cookie = "0.16"
|
|
|
|
[dev-dependencies]
|
|
tokio-test = "0.4.2"
|