-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
54 lines (51 loc) · 2.48 KB
/
Cargo.toml
File metadata and controls
54 lines (51 loc) · 2.48 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
[workspace]
members = [
"apps/*",
"packages/*",
]
resolver = "3"
[workspace.package]
authors = ["Xavier Lau <x@acg.box>"]
description = "Evidence-linked fact memory for agents."
edition = "2024"
homepage = "https://hack.ink/elf"
license = "GPL-3.0"
readme = "README.md"
repository = "https://github.com/hack-ink/elf"
version = "0.2.0"
[workspace.dependencies]
ahash = { version = "0.8" }
axum = { version = "0.8" }
blake3 = { version = "1.8" }
clap = { version = "4.5", features = ["derive"] }
color-eyre = { version = "0.6" }
qdrant-client = { version = ">=1.16,<1.17" }
regex = { version = "1.12" }
reqwest = { version = "0.12", features = ["json", "rustls-tls"] }
rmcp = { version = "0.16", features = ["transport-streamable-http-server"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0" }
sqlx = { version = "0.8", features = ["json", "postgres", "runtime-tokio", "time", "tls-rustls", "uuid"] }
thiserror = { version = "2.0" }
time = { version = "0.3", features = ["macros", "serde"] }
tokenizers = { version = "0.22", features = ["http"] }
tokio = { version = "1.50", features = ["macros", "rt-multi-thread", "time"] }
toml = { version = "1.0" }
tower = { version = "0.5" }
tracing = { version = "0.1" }
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
unicode-normalization = { version = "0.1" }
unicode-script = { version = "0.5" }
unicode-segmentation = { version = "1.12" }
uuid = { version = "1.22", features = ["serde", "v4", "v5"] }
vergen-gitcl = { version = "9.1", features = ["cargo"] }
whatlang = { version = "0.18" }
elf-chunking = { version = "0.2", path = "packages/elf-chunking" }
elf-cli = { version = "0.2", path = "packages/elf-cli" }
elf-config = { version = "0.2", path = "packages/elf-config" }
elf-domain = { version = "0.2", path = "packages/elf-domain" }
elf-providers = { version = "0.2", path = "packages/elf-providers" }
elf-service = { version = "0.2", path = "packages/elf-service" }
elf-storage = { version = "0.2", path = "packages/elf-storage" }
elf-testkit = { version = "0.2", path = "packages/elf-testkit" }
elf-worker = { version = "0.2", path = "apps/elf-worker" }