2022-08-12 19:01:29 +02:00
|
|
|
[package]
|
|
|
|
name = "cal8tor"
|
2022-08-30 22:59:32 +02:00
|
|
|
version = "0.2.0"
|
2022-08-16 18:48:16 +02:00
|
|
|
authors = ["Mylloon"]
|
2022-08-12 19:01:29 +02:00
|
|
|
edition = "2021"
|
2022-08-16 18:48:16 +02:00
|
|
|
description = "Extractor of the calendar of the IT degree of university Paris 8"
|
|
|
|
readme = "README.md"
|
|
|
|
repository = "https://git.kennel.ml/Anri/cal8tor"
|
|
|
|
keywords = ["scrape", "calendar"]
|
|
|
|
publish = false
|
2022-08-12 19:01:29 +02:00
|
|
|
|
|
|
|
[dependencies]
|
2022-08-12 19:54:53 +02:00
|
|
|
reqwest = { version = "0.11" }
|
2022-08-21 12:51:43 +02:00
|
|
|
tokio = { version = ">=1.13.1", features = ["full"] }
|
2022-08-16 18:48:16 +02:00
|
|
|
scraper = "0.13"
|
2022-08-21 12:51:43 +02:00
|
|
|
regex = ">=1.5.5"
|
|
|
|
chrono = ">=0.4.20"
|
2022-08-15 19:09:55 +02:00
|
|
|
ics = "0.5"
|
2022-08-16 18:48:16 +02:00
|
|
|
uuid = { version = "1.1", features = ["v4", "fast-rng"] }
|
2022-08-16 18:18:30 +02:00
|
|
|
clap = { version = "3.2", features = ["derive"] }
|