-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
98 lines (81 loc) · 1.91 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
[package]
name = "autopulse"
version = "1.2.0"
edition = "2021"
build = "src/build.rs"
[features]
postgres = ["diesel/postgres", "diesel_migrations/postgres"]
sqlite = ["diesel/sqlite", "diesel_migrations/sqlite"]
vendored = [
"reqwest/native-tls-vendored",
"pq-sys/bundled",
"libsqlite3-sys/bundled",
]
default = ["postgres", "sqlite"]
[dependencies]
# Web framework
actix-web = { version = "4.9.0", default-features = false, features = [
# disable actix-web's zstd feature because it can't be vendored yet
"compat",
"compress-brotli",
"compress-gzip",
"cookies",
"http2",
"macros",
"unicode",
] }
actix-web-httpauth = "0.8.2"
# Error handling
anyhow = "1.0.87"
# Configuration
config = "0.14.0"
# Serialization
serde = "1.0.210"
serde_json = "1.0.128"
# Tracing
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = [
"env-filter",
"fmt",
"local-time",
"time",
] }
tracing-appender = "0.2.3"
# Database
diesel = { version = "2.2.4", features = [
"returning_clauses_for_sqlite_3_35",
"r2d2",
"chrono",
] }
diesel_migrations = { version = "2.2.0" }
pq-sys = "0.6.3"
# mysqlclient-sys = "0.4.1"
libsqlite3-sys = "0.30.1"
# Date and time
chrono = { version = "0.4.38", features = ["serde"] }
# Asynchronous runtime
tokio = { version = "1.40.0", features = [
"process",
"macros",
"rt-multi-thread",
] }
# Hashing
sha2 = "0.10.8"
# HTTP client
reqwest = { version = "0.12.7", features = ["json", "stream"] }
base64 = "0.22.1"
# URL parsing
url = "2.5.2"
# UUIDs
uuid = { version = "1.10.0", features = ["v4"] }
# File system notifications
notify = "7.0.0"
# Other
struson = { version = "0.5.0", features = ["experimental", "serde"] }
regex = "1.10.6"
# Command-line arguments
clap = { version = "4.5.18", features = ["derive"] }
clap_derive = { version = "4.5.18" }
# [dev-dependencies]
# # Standardize logging output
# tracing-test = "0.2.5"