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]
|
2024-05-28 21:19:19 +02:00
|
|
|
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"
|
2024-05-28 21:19:19 +02:00
|
|
|
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"] }
|
2024-05-28 21:19:19 +02:00
|
|
|
clap = { version = "4.5", features = ["derive"] }
|
2023-09-28 23:16:39 +02:00
|
|
|
dialoguer = "0.11"
|
2024-05-28 21:19:19 +02:00
|
|
|
|
|
|
|
[lints.clippy]
|
|
|
|
pedantic = "warn"
|