-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
49 lines (46 loc) · 1.16 KB
/
Copy pathCargo.toml
File metadata and controls
49 lines (46 loc) · 1.16 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
[package]
name = "azdaja"
version = "0.1.14"
edition = "2024"
license = "MIT"
description = "Virtual memory for language models with a bounded model-facing surface"
repository = "https://github.com/kubet/azdaja"
rust-version = "1.95"
publish = false
include = [
"/Cargo.toml",
"/Cargo.lock",
"/LICENSE",
"/THIRD-PARTY-NOTICES.md",
"/README.md",
"/src/**",
"/assets/template/SKILL.md",
"/assets/config.toml",
"/assets/legacy/*.toml",
]
[dependencies]
anyhow = "1.0"
crossterm = "0.29"
fs2 = "0.4"
# Work around monty 0.0.21 published resolver skew; keep exact until upstream fixes it.
compact_str = "=0.9.0"
get-size2 = "=0.10.1"
libc = "0.2"
memmap2 = "0.9"
monty = "=0.0.21"
monty-types = "=0.0.21"
ratatui = { version = "0.30", default-features = false, features = ["crossterm"] }
regex = "1.11"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.9"
shlex = "1.3"
strip-ansi-escapes = "0.2"
toml = "0.9"
[target.'cfg(windows)'.dependencies]
windows-sys = { version = "0.61", features = ["Win32_Foundation", "Win32_Storage_FileSystem"] }
[profile.release]
lto = "thin"
strip = true
panic = "unwind"
codegen-units = 1