cal7tor/Cargo.toml

23 lines
600 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-01 14:14:31 +01:00
version = "0.6.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"
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]
2022-08-12 19:54:53 +02:00
reqwest = { version = "0.11" }
2024-01-01 11:21:04 +01:00
tokio = { version = "1.35", features = ["full"] }
scraper = "0.18"
regex = "1.10"
chrono = "0.4.31"
2022-08-15 19:09:55 +02:00
ics = "0.5"
2024-01-01 11:21:04 +01:00
uuid = { version = "1.6", features = ["v4", "fast-rng"] }
2023-09-07 18:29:09 +02:00
clap = { version = "4.4", features = ["derive"] }
2023-09-28 23:16:39 +02:00
dialoguer = "0.11"