-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
55 lines (50 loc) · 2.01 KB
/
Copy pathCargo.toml
File metadata and controls
55 lines (50 loc) · 2.01 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
51
52
53
54
55
[package]
name = "rook"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "rook"
path = "src/main.rs"
[dependencies]
shared-kernel = { path = "../../crates/domain/shared-kernel" }
rook-core = { path = "../../crates/domain/rook-core" }
rook-usecases = { path = "../../crates/application/rook-usecases" }
transport-axum = { path = "../../crates/infrastructure/transport-axum" }
cache-memory = { path = "../../crates/infrastructure/cache-memory" }
audit-sqlite = { path = "../../crates/infrastructure/audit-sqlite" }
combo-sqlite = { path = "../../crates/infrastructure/combo-sqlite" }
observability = { path = "../../crates/infrastructure/observability" }
providers-openai = { path = "../../crates/infrastructure/providers-openai" }
providers-anthropic = { path = "../../crates/infrastructure/providers-anthropic" }
providers-ollama = { path = "../../crates/infrastructure/providers-ollama" }
providers-gemini = { path = "../../crates/infrastructure/providers-gemini" }
providers-groq = { path = "../../crates/infrastructure/providers-groq" }
encryption-inmemory = { path = "../../crates/infrastructure/encryption-inmemory" }
provider-sqlite = { path = "../../crates/infrastructure/provider-sqlite" }
auth-sqlite = { path = "../../crates/infrastructure/auth-sqlite" }
alias-sqlite = { path = "../../crates/infrastructure/alias-sqlite" }
db-migration = { path = "../../crates/infrastructure/db-migration" }
models-catalog = { path = "../../crates/infrastructure/models-catalog" }
tokio = { version = "1", features = ["full"] }
anyhow = "1"
clap = { version = "4", features = ["derive"] }
tracing = "0.1"
axum = { version = "0.8", features = ["macros"] }
tower = "0.5"
bytes = "1"
rust-embed = { version = "8", features = ["debug-embed"] }
mime = "0.3"
mime_guess = "2"
toml = "1.1"
figment = { version = "0.10", features = ["toml", "env"] }
dirs = "6"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
async-trait = "0.1"
futures = "0.3"
is-terminal = "0.4"
dotenvy = "0.15"
rand = "0.10"
dashmap = "6"
[dev-dependencies]
tempfile = "3"