diff options
author | Quentin Dufour <quentin@deuxfleurs.fr> | 2024-05-25 19:30:59 +0200 |
---|---|---|
committer | Quentin Dufour <quentin@deuxfleurs.fr> | 2024-05-25 19:30:59 +0200 |
commit | 52f870633c2cab8a4aeeec74792774931139b8b5 (patch) | |
tree | 878d4ff16cdebd7fdfc50a278dbadedd7eb63480 /aero-ical/Cargo.toml | |
parent | ff823a10f049e06c711537560ba10f3dc826afcd (diff) | |
download | aerogramme-52f870633c2cab8a4aeeec74792774931139b8b5.tar.gz aerogramme-52f870633c2cab8a4aeeec74792774931139b8b5.zip |
add a new aero-ical module
Diffstat (limited to 'aero-ical/Cargo.toml')
-rw-r--r-- | aero-ical/Cargo.toml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/aero-ical/Cargo.toml b/aero-ical/Cargo.toml new file mode 100644 index 0000000..6cfe882 --- /dev/null +++ b/aero-ical/Cargo.toml @@ -0,0 +1,15 @@ +[package] +name = "aero-ical" +version = "0.3.0" +authors = ["Alex Auvolat <alex@adnab.me>", "Quentin Dufour <quentin@dufour.io>"] +edition = "2021" +license = "EUPL-1.2" +description = "An iCalendar parser" + +[dependencies] +aero-dav.workspace = true + +icalendar.workspace = true +nom.workspace = true +chrono.workspace = true +tracing.workspace = true |