-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (24 loc) · 946 Bytes
/
Copy pathCargo.toml
File metadata and controls
26 lines (24 loc) · 946 Bytes
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
[workspace]
members = ["crates/gitnapse-protocol", "crates/gitnapse-server", "crates/gitnapse-client"]
resolver = "2"
[workspace.package]
version = "0.1.0"
edition = "2024"
license = "MIT"
[workspace.dependencies]
# The core SDK with the TUI disabled: the server only needs the provider,
# auth, models and config modules. This drops ratatui/crossterm from the build.
gitnapse = { path = "../gitnapse", default-features = false }
gitnapse-protocol = { path = "crates/gitnapse-protocol" }
anyhow = "1.0"
axum = "0.8"
base64 = "0.22"
clap = { version = "4.6", features = ["derive", "env"] }
dotenvy = "0.15"
env_logger = "0.11"
log = "0.4"
reqwest = { version = "0.13", default-features = false, features = ["json", "rustls"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1.48", features = ["rt-multi-thread", "macros", "net", "signal"] }
tower = { version = "0.5", features = ["util", "timeout"] }