-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
48 lines (43 loc) · 1.26 KB
/
Cargo.toml
File metadata and controls
48 lines (43 loc) · 1.26 KB
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
[package]
name = "lore-core"
version = "0.1.65-rc34"
edition = "2024"
autobins = false
[[bin]]
name = "lore"
path = "src/bin/lore.rs"
[[bin]]
name = "lore-server"
path = "src/main.rs"
[dependencies]
argon2 = "0.5"
async-stream = "0.3"
async-trait = "0.1"
atty = "0.2"
axum = { version = "0.8", features = ["json", "multipart"] }
base64 = "0.22"
clap = { version = "4.5", features = ["derive"] }
flate2 = "1.1"
futures-util = "0.3"
openidconnect = "4.0.1"
pulldown-cmark = "0.13"
quick-xml = "0.37"
regex = "1"
rand_core = { version = "0.6", features = ["getrandom"] }
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls", "stream"] }
rusqlite = { version = "0.34", features = ["bundled"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
sha2 = "0.10"
tar = "0.4"
tokio = { version = "1.45", features = ["macros", "rt-multi-thread", "sync", "process", "io-util", "signal"] }
thiserror = "2.0"
time = { version = "0.3", features = ["formatting", "macros", "parsing", "serde", "serde-well-known"] }
urlencoding = "2.1"
uuid = { version = "1.18", features = ["serde", "v4"] }
v_htmlescape = "0.15"
[target.'cfg(unix)'.dependencies]
libc = "0.2"
[dev-dependencies]
tempfile = "3.20"
tower = { version = "0.5", features = ["util"] }