2022-12-14 14:29:10 +00:00
|
|
|
[package]
|
|
|
|
name = "untis"
|
2023-02-24 18:27:11 +00:00
|
|
|
version = "0.1.1"
|
2022-12-14 14:29:10 +00:00
|
|
|
description = "Rust client for WebUntis JSON-RPC and REST API"
|
|
|
|
authors = ["Dominic Grimm <dominic@dergrimm.net>"]
|
|
|
|
edition = "2021"
|
|
|
|
homepage = "https://git.dergrimm.net/dergrimm/untis.rs"
|
2022-12-15 13:53:11 +00:00
|
|
|
repository = "https://git.dergrimm.net/dergrimm/untis.rs"
|
2022-12-14 14:29:10 +00:00
|
|
|
license = "MIT"
|
|
|
|
publish = false
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
anyhow = { version = "1.0.66", features = ["backtrace"] }
|
|
|
|
chrono = { version = "0.4.23", features = ["serde"] }
|
|
|
|
cookie = "0.16.1"
|
2023-01-27 18:11:00 +00:00
|
|
|
csv = "1.1.6"
|
2022-12-20 17:38:11 +00:00
|
|
|
reqwest = { version = "0.11.13", features = ["json"] }
|
2022-12-14 14:29:10 +00:00
|
|
|
serde = { version = "1.0.150", features = ["derive"] }
|
|
|
|
serde_json = "1.0.89"
|
|
|
|
url = "2.3.1"
|
2023-01-13 15:01:41 +00:00
|
|
|
|
|
|
|
[features]
|
|
|
|
rustls = ["reqwest/rustls"]
|