-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
42 lines (39 loc) · 1.31 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
[package]
name = "minoteaur"
version = "0.8.0"
edition = "2021"
build = "build.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
axum = { version = "0.5", features = ["multipart"] }
tokio = { version = "1.0", features = ["full"] }
tracing = "0.1"
tracing-subscriber = { version="0.3", features = ["env-filter"] }
tower-http = { version = "0.2.0", features = ["fs", "trace", "add-extension"] }
rusty_ulid = "1"
serde = { version = "1.0", features = ["derive"] }
chrono = { version = "0.4", features = ["serde"] }
sqlx = { version = "0.5", features = ["runtime-tokio-rustls", "sqlite", "chrono", "migrate"], default-features = false }
anyhow = "1"
rmp-serde = "1"
thiserror = "1"
futures-util = "0.3"
pulldown-cmark = { version = "0.9.2", default-features = false, features = ["simd"] }
regex = "1.5"
lazy_static = "1"
smallvec = "1"
inlinable_string = "0.1"
unicode-segmentation = "1.9"
serde_with = "1"
triple_accel = "0.4"
rand = "0.8"
katex = "0.4"
fnv = "1"
magic = "0.12"
tower = "0.4"
mime = "0.3"
quick-js = { version = "0.4.2-alpha.0", git = "https://github.com/osmarks/quickjs-rs.git" }
config = { version = "0.13", default-features = false, features = ["toml"] }
itertools = "0.10"
[build-dependencies]
vergen = { version = "8", features = ["build", "git", "gitcl"] }