-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
81 lines (54 loc) · 1.58 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
[package]
name = "hsr_dictionary"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
hyper = { version = "1.5", features = ["full"] }
tower = { version = "0.4", features = ["util"]}
tower-http = { version = "0.5", features = ["cors", "trace"] }
axum = "0.7"
axum-macros = "0.4"
axum-valid = "0.15"
clap = { version = "4.5", features = ["derive"] }
tokio = { workspace = true }
serde_json = { workspace = true }
anyhow = { workspace = true }
serde = { workspace = true }
tracing = { workspace = true }
tracing-subscriber = { workspace = true, features = ["env-filter"] }
tracing-appender = { workspace = true }
tracing-unwrap = { workspace = true }
crud = { workspace = true }
validator = { version = "0.16", features = ["derive"] }
sqlx = { workspace = true }
model = { workspace = true }
http-body-util = "0.1"
itertools = { workspace = true }
urlencoding = "2.1.3"
[workspace]
members = ["crud", "model"]
[workspace.dependencies]
tokio = { version = "1.41", features = ["full"] }
serde = "1.0"
serde_json = "1.0"
tracing = "0.1"
tracing-subscriber = "0.3"
tracing-appender = "0.2"
tracing-unwrap = "0.10"
anyhow = "1.0"
crud = { path = "crud" }
model = { path = "model" }
sqlx = { version = "0.7", features = [
"runtime-tokio-rustls",
"postgres",
"migrate",
] }
thiserror = "1.0"
reqwest = { version = "0.11", features = ["json", "serde_json"] }
lazy_static = "1.5"
strum = { version = "0.26", features = ["derive"] }
futures = "0.3"
dotenvy = "0.15"
itertools = "0.12"
log = "0.4"