cal7tor/Cargo.toml

23 lines
605 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"
2023-09-18 20:00:35 +02:00
version = "0.5.0-alpha"
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" }
2023-09-07 18:29:09 +02:00
tokio = { version = "1.32", features = ["full"] }
scraper = "0.17"
regex = "1.9"
chrono = "0.4.28"
2022-08-15 19:09:55 +02:00
ics = "0.5"
2023-09-07 18:29:09 +02:00
uuid = { version = "1.4", features = ["v4", "fast-rng"] }
clap = { version = "4.4", features = ["derive"] }
2023-09-28 23:16:39 +02:00
dialoguer = "0.11"