-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
50 lines (42 loc) · 1.58 KB
/
Cargo.toml
File metadata and controls
50 lines (42 loc) · 1.58 KB
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
[workspace]
exclude = [ "crates/site-app" ]
members = [ "crates/*" ]
resolver = "3"
[workspace.package]
license-file = "LICENSE.md"
[workspace.lints.rust]
missing_docs = "deny"
[workspace.dependencies]
# palin-core
belt = { git = "https://github.com/rambit-systems/palin-core" }
db = { git = "https://github.com/rambit-systems/palin-core" }
model = { git = "https://github.com/rambit-systems/palin-core" }
slug = { git = "https://github.com/rambit-systems/palin-core" }
storage = { git = "https://github.com/rambit-systems/palin-core" }
# essentials
bytes = { version = "1" }
serde = { version = "1", features = [ "derive" ] }
# arbitrary_precision required for deserializing bare u128
serde_json = { version = "1", features = [ "arbitrary_precision" ] }
thiserror = { version = "2" }
tracing = { version = "0.1", features = [ "async-await" ] }
ulid = { version = "1.1", features = [ "serde" ] }
# atomic-ish features
clap = { version = "4.5", features = [ "derive" ] }
miette = { git = "https://github.com/zkat/miette", default-features = false, features = [
"derive",
] }
nix-compat = { git = "https://github.com/johnbchron/tvix", default-features = false }
nix-nar = { version = "0.3" }
sha256 = { version = "1.6", default-features = false }
time = { version = "0.3", features = [ "serde" ] }
# async
async-trait = { version = "0.1" }
futures = { version = "0.3" }
tokio = { version = "1" }
# network stack
axum = { version = "0.8", features = [ "http2", "macros" ] }
axum-login = { version = "0.18" }
tower = { version = "0.5" }
tower-http = { version = "0.6" }
tower-sessions = { version = "0.14" }