-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
68 lines (65 loc) · 1.65 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
[package]
name = "schiller-lib"
description = "Schiller library software"
version = "0.10.1"
authors = ["Lars Wrenger <[email protected]>", "Nils Wrenger <[email protected]>"]
edition = "2021"
readme = "README.md"
license = "MIT"
repository = "https://github.com/wrenger/schiller-lib"
publish = false
[profile.release]
lto = "thin"
opt-level = 3
codegen-units = 1
strip = true
[dependencies]
axum = "0.7"
axum-extra = { version = "0.9", features = ["typed-header"] }
base64 = "0.22"
chrono = "0.4"
clap = { version = "4.5", features = ["derive"] }
csv = "1.3"
email_address = "0.2"
gluer = "0.8.2"
hyper = "1.4"
hyper-util = "0.1"
lettre = { version = "0.11", default-features = false, features = [
"builder",
"smtp-transport",
"tokio1",
"tokio1-rustls-tls",
] }
oauth2 = { version = "5.0.0-rc.1" }
rand = "0.8"
reqwest = { version = "0.12", default-features = false, features = [
"rustls-tls",
"json",
] }
roxmltree = "0.20"
rusqlite = { version = "0.32", features = ["bundled"], optional = true }
rustls = { version = "0.23", default-features = false }
rustls-pemfile = "2.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1.38", features = [
"fs",
"sync",
"time",
"macros",
"rt-multi-thread",
] }
tokio-rustls = { version = "0.26", default-features = false }
tower = { version = "0.5", features = ["util", "timeout"] }
tower-http = { version = "0.6", features = [
"fs",
"trace",
"compression-deflate",
] }
tower-service = "0.3"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
unicode-normalization = "0.1"
[features]
default = []
sqlite = ["rusqlite"]