-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
67 lines (65 loc) · 2.85 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
[package]
name = "samling"
version = "0.11.2"
license = "MIT"
edition = "2021"
description = "App for managing apparel collections"
repository = "https://github.com/hyperkliv/samling"
documentation = "https://docs.rs/samling/"
homepage = "https://github.com/hyperkliv/samling"
[dependencies]
argon2 = "0.5.3"
async-trait = "0.1.83"
axum = { version = "0.7.7", features = ["macros"] }
axum-extra = { version = "0.9.4", features = ["typed-header"] }
base64 = "0.22.1"
bytes = { version = "1.7.2", features = ["serde"] }
clap = { version = "4.5.19", features = ["derive", "env"], optional = true }
cornucopia_async = { version = "0.6.0", features = ["with-serde_json-1"] }
csv = "1.3.0"
deadpool-postgres = "0.12.1"
derive_more = { version = "1.0.0", features = ["full"] }
dotenvy = "0.15.7"
futures = "0.3.30"
governor = "0.6.3"
http = "1.1.0"
hyper = { version = "1.4.1", features = ["server", "http1", "http2"] }
include_dir = "0.7.4"
indexmap = { version = "2.6.0", features = ["serde"] }
itertools = "0.13.0"
jsonwebtoken = "9.3.0"
log = "0.4.22"
mimalloc = { version = "0.1.43", default-features = false, optional = true }
mime = "0.3.17"
mime_guess = "2.0.5"
num_enum = "0.7.3"
once_cell = "1.20.1"
password-hash = { version = "0.5.0", features = ["std"] }
postgres-types = { version = "0.2.8", features = ["derive", "with-time-0_3", "with-serde_json-1"] }
rand = "0.8.5"
reqwest = { version = "0.12.8", features = ["rustls-tls", "json", "stream", "multipart"], default-features = false }
rust_decimal = { version = "1.36.0", features = ["db-tokio-postgres", "db-postgres", "serde-with-float"] }
rust_xlsxwriter = "0.78.0"
schemars = { version = "0.8.21", features = ["derive", "preserve_order", "bytes", "url", "rust_decimal"] }
sentry = { version = "0.34.0", default-features = false, features = ["rustls", "tracing", "backtrace", "contexts", "panic", "tokio", "reqwest", "tower"] }
serde = { version = "1.0.210", features = ["derive"] }
serde_json = { version = "1.0.128", features = ["preserve_order"] }
serde_path_to_error = "0.1.16"
slug = "0.1.6"
smol_str = { version = "0.3.1", features = ["serde"] }
strum = { version = "0.26.3", features = ["derive"] }
thiserror = "1.0.64"
# TODO: Remove `serde-well-known`, it's being deprecated. See this commit:
# https://github.com/time-rs/time/commit/110e17bb8461816551f7197a2aa2e34c981fa22d
time = { version = "0.3.36", features = ["serde", "serde-human-readable", "serde-well-known"] }
tokio = { version = "1.40.0", default-features = false, features = ["signal", "macros", "rt-multi-thread"] }
tokio-postgres = "0.7.12"
tower = "0.5.1"
tower-http = { version = "0.6.1", default-features = false, features = ["fs", "trace", "cors", "compression-full"] }
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", optional = true }
url = { version = "2.5.2", features = ["serde"] }
[features]
default = ["cli"]
cli = ["clap", "tracing-subscriber"]
ui = []