-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
46 lines (43 loc) · 1.19 KB
/
Copy pathCargo.toml
File metadata and controls
46 lines (43 loc) · 1.19 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
[workspace]
resolver = "2"
members = [
"phantom-core",
"phantom-rules",
"phantom-aiconfig",
"phantom-promptinjection",
"phantom-tarball",
"phantom-fetch",
"phantom-mcp",
"phantom-snapshot",
"phantom-cli",
]
[workspace.package]
version = "0.2.0"
edition = "2024"
license = "Apache-2.0"
repository = "https://github.com/r3dlight/phantom"
authors = ["r3dlight"]
[workspace.dependencies]
phantom-core = { path = "phantom-core" }
phantom-rules = { path = "phantom-rules" }
phantom-aiconfig = { path = "phantom-aiconfig" }
phantom-promptinjection = { path = "phantom-promptinjection" }
phantom-tarball = { path = "phantom-tarball" }
phantom-fetch = { path = "phantom-fetch" }
phantom-mcp = { path = "phantom-mcp" }
phantom-snapshot = { path = "phantom-snapshot" }
anyhow = "1"
thiserror = "1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
regex = "1"
unicode-normalization = "0.1"
walkdir = "2"
clap = { version = "4", features = ["derive"] }
sha2 = "0.11.0"
flate2 = "1"
tar = "0.4"
ureq = { version = "2", default-features = false, features = ["tls", "json", "gzip"] }
rusqlite = { version = "0.39.0", features = ["bundled"] }
dirs = "6.0.0"
console = "0.16"