-
Notifications
You must be signed in to change notification settings - Fork 18
/
Cargo.toml
39 lines (35 loc) · 830 Bytes
/
Cargo.toml
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
35
36
37
38
39
[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"
exclude = [
"assets/*"
]
[[bin]]
name = "zerocal"
path = "src/bin.rs"
[dependencies]
anyhow = "1.0.66"
axum = "0.6.7"
chrono = "0.4.22"
dateparser = "0.1.7"
humantime = "2.1.0"
icalendar = "0.14.0"
qrcode-generator = "4.1.6"
shuttle-service = { version = "0.11.0", features = ["web-axum"], optional = true }
sync_wrapper = "0.1.1"
tokio = { version = "1.22.0", features = ["macros"], optional = true }
[features]
default = ["shuttle"]
shuttle = ["shuttle-service"]
local = ["dep:tokio"]