cal7tor/Cargo.toml

26 lines
675 B
TOML
Raw Normal View History

2022-08-12 19:01:29 +02:00
[package]
2023-09-18 18:46:50 +02:00
name = "cal7tor"
2024-01-30 20:21:27 +01:00
version = "0.9.2"
2022-08-16 18:48:16 +02:00
authors = ["Mylloon"]
2022-08-12 19:01:29 +02:00
edition = "2021"
2023-09-18 18:46:50 +02:00
description = "Timetable extractor for the Paris Cité master's degree in IT"
2022-08-16 18:48:16 +02:00
readme = "README.md"
2023-09-18 18:46:50 +02:00
repository = "https://git.mylloon.fr/Anri/cal7tor"
2022-08-16 18:48:16 +02:00
keywords = ["scrape", "calendar"]
publish = false
2023-02-15 15:38:42 +01:00
license = "AGPL-3.0-or-later"
2022-08-12 19:01:29 +02:00
[dependencies]
reqwest = { version = "0.12" }
2024-08-25 13:52:59 +02:00
tokio = { version = "1.39", features = ["full"] }
scraper = "0.20"
2024-01-01 11:21:04 +01:00
regex = "1.10"
chrono = "0.4.38"
2024-01-30 15:27:03 +01:00
ics = { version = "0.5", default-features = false }
2024-08-25 13:52:59 +02:00
uuid = { version = "1.10", features = ["v4", "fast-rng"] }
clap = { version = "4.5", features = ["derive"] }
2023-09-28 23:16:39 +02:00
dialoguer = "0.11"
[lints.clippy]
pedantic = "warn"