-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
124 lines (114 loc) · 2.93 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
[workspace]
members = ["crates/*", "nitro_repo"]
resolver = "2"
[workspace.package]
version = "2.0.0-BETA"
authors = ["Wyatt Jacob Herkamp <[email protected]>"]
edition = "2021"
license = "MIT"
[workspace.dependencies]
tokio = { version = "1", features = ["full"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = "0.8"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
tracing-appender = "0.2"
utoipa = { version = "5.0.0", features = ["chrono", "uuid", "url", "debug"] }
rand = "0.8"
nr-core = { path = "crates/core" }
nr-macros = { path = "crates/macros" }
nr-storage = { path = "crates/storage" }
# Rust Utilities
futures = "0.3"
derive_more = { version = "1.0.0", features = [
"deref",
"from",
"into",
"as_ref",
"debug",
] }
ahash = "0.8"
parking_lot = { version = "0.12", features = [] }
futures-util = "0.3.21"
uuid = { version = "1", features = ["v4", "v5", "serde"] }
chrono = { version = "0.4", features = ["serde"] }
strum = { version = "0.26", features = ["derive"] }
mime_guess = "2"
mime = "0.3"
base64 = "0.22"
derive_builder = "0.20"
# Error Handling
schemars = { git = "https://github.com/wyatt-herkamp/schemars.git", branch = "if_for_adjacent" }
thiserror = "2"
anyhow = "1"
badge-maker = { git = "https://github.com/wyatt-herkamp/badge-maker.git", branch = "updates_and_improvements" }
auto_impl = "1.2"
once_cell = "1.8"
regex = "1"
hyper = { version = "1", features = ["full"] }
hyper-util = { version = "0.1" }
http = "1.1"
http-body-util = "0.1"
http-body = "1"
bytes = "1"
pin-project = "1"
url = "2"
## Hashing
digestible = { git = "https://github.com/wyatt-herkamp/digestible.git", features = [
"base64",
] }
digest = { version = "0.10", features = ["std", "alloc"] }
md-5 = "0.10"
sha1 = "0.10"
sha2 = "0.10"
sha3 = "0.10"
clap = { version = "4", features = ["derive"] }
[workspace.dependencies.sqlx]
version = "0.8"
default-features = false
features = [
"runtime-tokio-rustls",
"macros",
"postgres",
"chrono",
"json",
"derive",
"uuid",
"migrate",
]
[workspace.dependencies.reqwest]
version = "0.12"
features = ["stream", "http2", "json", "rustls-tls"]
default-features = false
[workspace.lints.rust]
async_fn_in_trait = "allow"
deprecated = "deny"
[profile.dev.package."argon2"]
opt-level = 3
[profile.dev.package."tokio"]
opt-level = 3
[profile.dev.package."digest"]
opt-level = 3
[profile.dev.package."md-5"]
opt-level = 3
[profile.dev.package."sha1"]
opt-level = 3
[profile.dev.package."sha2"]
opt-level = 3
[profile.dev.package."sha3"]
opt-level = 3
[profile.dev.package."tracing"]
opt-level = 3
[profile.dev.package."tracing-subscriber"]
opt-level = 3
[profile.dev.package."tracing-appender"]
opt-level = 3
[profile.dev.package."tracing-opentelemetry"]
opt-level = 3
[profile.dev.package."opentelemetry"]
opt-level = 3
[profile.dev.package."opentelemetry_sdk"]
opt-level = 3
[profile.dev.package."opentelemetry-otlp"]
opt-level = 3