-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
69 lines (66 loc) · 1.82 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[package]
name = "dancelist"
version = "0.1.0"
edition = "2021"
license = "Apache-2.0"
authors = ["Andrew Walbran <[email protected]>"]
description = "A website for listing folk dance events."
repository = "https://github.com/qwandor/dancelist"
keywords = ["folk", "dance", "balfolk", "website"]
categories = ["web-programming"]
[dependencies]
askama = "0.12.1"
axum = { version = "0.7.9", features = ["macros"] }
axum-extra = { version = "0.9.6", features = ["form", "typed-header"] }
chrono = { version = "0.4.38", features = ["serde"] }
chrono-tz = { version = "0.10.0", features = ["serde"] }
clap = { version = "4.5.21", features = ["derive"] }
color-backtrace = "0.6.1"
enum-iterator = "2.1.0"
eyre = "0.6.12"
icalendar = { version = "0.16.9", features = ["parser"] }
jsonwebtoken = "9.3.0"
log = "0.4.22"
octocrab = "0.42.1"
pretty_env_logger = "0.5.0"
quick-xml = { version = "0.37.1", features = ["serialize"] }
regex = "1.11.1"
reqwest = "0.11.23"
schemars = { version = "0.8.21", features = ["chrono"] }
serde = { version = "1.0.215", features = ["derive"] }
serde_json = "1.0.133"
serde_urlencoded = "0.7.1"
serde_yaml = "0.8.26"
stable-eyre = "0.2.2"
tokio = { version = "1.38.1", features = ["macros", "rt-multi-thread"] }
toml = "0.8.19"
tower-http = { version = "0.6.2", features = ["fs"] }
url = "2.5.4"
[package.metadata.deb]
section = "web"
maintainer-scripts = "debian-scripts"
conf-files = ["/etc/dancelist.toml"]
assets = [
[
"target/release/dancelist",
"usr/bin/",
"755",
],
[
"public/scripts/*",
"/usr/share/dancelist/scripts/",
"644",
],
[
"public/stylesheets/*",
"/usr/share/dancelist/stylesheets/",
"644",
],
[
"dancelist.example.toml",
"etc/dancelist.toml",
"640",
],
]
# This section needs to be here even if it's empty, for the systemd integration to work.
[package.metadata.deb.systemd-units]