cal7tor/Cargo.toml

26 lines
708 B
TOML
Raw Permalink Normal View History

2022-08-12 19:01:29 +02:00
[package]
2023-09-18 18:46:50 +02:00
name = "cal7tor"
2024-09-14 14:18:05 +02:00
version = "0.10.0"
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"
2024-09-14 14:18:38 +02:00
keywords = ["scrape", "calendar", "paris diderot", "paris cité"]
2022-08-16 18:48:16 +02:00
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-09-13 19:30:57 +02:00
tokio = { version = "1.40", features = ["full"] }
2024-08-25 13:52:59 +02:00
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"