-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (37 loc) · 931 Bytes
/
Cargo.toml
File metadata and controls
41 lines (37 loc) · 931 Bytes
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
38
39
40
41
[package]
name = "lanis-rs"
version = "0.3.0"
authors = ["Rajala1404"]
edition = "2021"
description = "A API for Lanis (Schulportal Hessen)"
keywords = ["lanis", "schulportal", "scraping", "sph", "api"]
license = "GPL-3.0"
readme = "README.md"
repository = "https://github.com/lanis-mobile/lanis-rs"
exclude = ["test_file.txt"]
[dependencies]
reqwest = { version = "0.12.9", features = [
"json",
"cookies",
"multipart",
"stream",
"gzip",
] }
reqwest_cookie_store = "0.8.0"
tokio = { version = "1.42.0", features = ["rt-multi-thread", "macros"] }
serde = { version = "1.0.216", features = ["derive"] }
serde_json = "1.0.134"
scraper = "0.20.0"
rsa = "0.9.8"
rand = "0.8.5"
base64 = "0.22.1"
md-5 = "0.10.6"
aes = "0.8.4"
cbc = { version = "0.1.2", features = ["alloc"] }
evpkdf = "0.2.0"
regex = "1.11.1"
markup5ever = "0.12.1"
chrono = "0.4.39"
untis = { version = "0.3.0" }
[dev-dependencies]
stopwatch-rs = "0.1.0"