-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
63 lines (59 loc) · 1.78 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
[package]
name = "mixini-server"
version = "0.1.0"
authors = ["Allen Bui <[email protected]>"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
members = [".", "entity"]
[dependencies]
anyhow = "1.0.56"
axum = { version = "0.5.1", features = ["headers", "http2", "multipart"] }
chrono = { version = "0.4.19", features = ["serde"] }
dotenv = "0.15.0"
entity = { path = "entity" }
fieldfilter = "0.1.0"
lazy_static = "1.4.0"
lettre = { version = "0.10.0-rc.5", features = [
"tokio1",
"tokio1-native-tls",
"tracing",
"serde",
] }
libreauth = "0.15.0"
oso = { version = "0.26.0", features = [
"uuid-07",
] }
oxide-auth = "0.5.1"
oxide-auth-axum = "0.2.0"
rand = "0.8.5"
redis = { version = "0.21.5", features = [
"aio",
"tokio-comp",
"connection-manager",
], default-features = false }
regex = "1.5.5"
sea-orm = { version = "0.7.1", features = [
"macros",
"debug-print",
"runtime-tokio-native-tls",
"sqlx-postgres",
], default-features = false }
serde = { version = "1.0.136", features = ["derive"] }
serde_json = "1.0.79"
thiserror = "1.0.30"
tokio = { version = "1.17.0", features = ["rt-multi-thread", "macros", "sync"] }
tower = "0.4.12"
tower-http = { version = "0.2.5", features = [
"add-extension",
"trace",
"cors",
] }
tracing = "0.1.33"
tracing-subscriber = { version = "0.3.11", features = ["env-filter"] }
ulid = { version = "0.5.0", features = ["serde", "uuid"] }
uuid = { version = "0.8.2", features = ["serde", "v4"] }
validator = { version = "0.14.0", features = ["derive"] }
[patch.crates-io]
oso = { git = "https://github.com/fairingrey/oso", branch = "rust-addl-interface" }
sea-orm = { git = "https://github.com/fairingrey/sea-orm", branch = "changeset-like" }