-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathCargo.toml
98 lines (92 loc) · 3.21 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 = "quanweb"
version = "1.5.0"
edition = "2021"
rust-version = "1.76"
default-run = "quanweb"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.release]
strip = "debuginfo"
[dependencies]
ammonia = "4.0.0"
async-trait = "0.1.83"
atom_syndication = { version = "0.12.4", features = ["serde"] }
axum = { version = "0.7.9", features = ["macros"] }
axum-extra = { version = "0.9.6" }
axum-login = "0.16.0"
chrono = { version = "0.4.39", features = [
"serde",
"std",
], default-features = false }
chrono-tz = "0.10.0"
clap = { version = "4.5.20", features = ["derive"] }
comrak = "0.32.0"
config = { version = "0.15.4", default-features = false, features = [
"indexmap",
"toml",
] }
djangohashers = { version = "1.7.4", default-features = false, features = [
"with_argon2",
] }
edgedb-derive = "0.5.2"
edgedb-errors = { version = "0.4.2", features = ["miette"] }
edgedb-protocol = { version = "0.6.1", features = ["all-types"] }
edgedb-tokio = { version = "0.5.1", features = ["serde_json", "miette-errors"] }
field_access = "0.1.11"
field_names = "0.2.0"
fluent-bundle = "0.15.3"
fluent-templates = "0.12.0"
fred = { version = "10.0.3", features = ["tracing"] }
http = "1.2.0"
indexmap = { version = "2.7.0", features = ["serde"] }
libpassgen = "1.0.3"
miette = { version = "7.4.0", features = ["fancy", "serde"] }
mime_guess = "2.0.5"
minijinja = { version = "2.5.0", features = ["loader", "internal_debug"] }
once_cell = "1.20.2"
querystring_tiny = "0.2.1"
redact = { version = "0.1.1", features = ["serde"] }
regex = "1.11.1"
rust-embed = { version = "8.5.0", features = [
"axum",
"mime-guess",
"include-exclude",
] }
serde = { version = "1.0.217", features = ["serde_derive"] }
serde-value = "0.7.0"
serde_json = "1.0.134"
serde_json5 = "0.1.0"
serde_with = "3.12.0"
smallvec = "1.13.2"
smart-default = "0.7.1"
str-macro = "1.0.0"
strum = { version = "0.26.3", features = ["derive", "strum_macros"] }
syntect = { version = "5.0.0", default-features = false, features = [
"fancy-regex",
"html",
] }
thiserror = "2.0.9"
tokio = { version = "1.40.0", features = ["full"] }
tokio-listener = { version = "0.5.0", default-features = false, features = ["axum07", "unix", "unix_path_tools"] }
tower = { version = "0.5.2", features = ["tokio", "tracing"] }
tower-http = { version = "0.6.2", features = ["trace"] }
tower-sessions = "0.13.0"
tower-sessions-redis-store = "0.15.0"
tracing = "0.1.41"
tracing-journald = "0.3.1"
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
two-face = { version = "0.4.0", default-features = false, features = [
"syntect-fancy",
] }
unic-langid = { version = "0.9.5", features = ["serde"] }
uuid = { version = "1.11.0", features = ["v1", "serde"] }
validify = "1.4.0"
[dev-dependencies]
nonzero = "0.2.0"
[build-dependencies]
crate-git-revision = "0.0.6"
[patch.crates-io]
edgedb-derive = { git = "https://github.com/edgedb/edgedb-rust.git", rev = "9025de8" }
edgedb-errors = { git = "https://github.com/edgedb/edgedb-rust.git", rev = "9025de8" }
edgedb-protocol = { git = "https://github.com/edgedb/edgedb-rust.git", rev = "9025de8" }
edgedb-tokio = { git = "https://github.com/edgedb/edgedb-rust.git", rev = "9025de8" }