24 lines
750 B
TOML
24 lines
750 B
TOML
[package]
|
|
name = "untis"
|
|
version = "0.1.0"
|
|
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"
|
|
repository = "https://git.dergrimm.net/dergrimm/untis.rs"
|
|
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"
|
|
reqwest = { version = "0.11.13", features = ["json"] }
|
|
serde = { version = "1.0.150", features = ["derive"] }
|
|
serde_json = "1.0.89"
|
|
url = "2.3.1"
|
|
|
|
[features]
|
|
rustls = ["reqwest/rustls"]
|