forked from mre/zerocal
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (31 loc) · 764 Bytes
/
Cargo.toml
File metadata and controls
34 lines (31 loc) · 764 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[package]
name = "zerocal"
version = "0.1.0"
edition = "2021"
authors = ["Matthias Endler <[email protected]>"]
description = "A serverless calendar app"
homepage = "https://github.com/mre/zerocal"
repository = "https://github.com/mre/zerocal"
keywords = [
"calendar",
"shuttle",
"shuttle.rs",
]
license = "Apache-2.0/MIT"
[[bin]]
name = "zerocal"
path = "src/bin.rs"
[dependencies]
anyhow = "1.0"
axum = "0.5"
chrono = "0.4.22"
dateparser = "0.1.7"
humantime = "2.1.0"
icalendar = "0.13.1"
shuttle-service = { version = "0.6.0", features = ["web-axum"], optional = true }
sync_wrapper = "0.1"
tokio = {version = "1.20.1", features = ["full"], optional = true }
[features]
default = ["shuttle"]
shuttle = ["shuttle-service"]
local = ["dep:tokio"]