-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
81 lines (71 loc) · 1.57 KB
/
Cargo.toml
File metadata and controls
81 lines (71 loc) · 1.57 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
[package]
name = "aiki"
version = "0.1.0"
edition = "2021"
license = "MPL-2.0"
description = "AI-native task tracking and agent orchestration CLI"
homepage = "https://github.com/glasner/aiki"
repository = "https://github.com/glasner/aiki"
[lib]
name = "aiki"
path = "src/lib.rs"
[[bin]]
name = "aiki"
path = "src/main.rs"
[[bench]]
name = "task_benchmarks"
harness = false
[[bench]]
name = "isolation_benchmarks"
harness = false
[dependencies]
clap = { version = "4.5", features = ["derive", "cargo"] }
anyhow = "1.0"
thiserror = "1.0"
jj-lib = "0.35.0"
toml = "0.8"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.9"
chrono = "0.4"
dirs = "5.0"
sysinfo = "0.32"
atty = "0.2"
shell-words = "1.1"
agent-client-protocol = "0.7"
which = "6.0"
uuid = { version = "1.0", features = ["v5"] }
sha2 = "0.10"
hex = "0.4"
globset = "0.4"
rand = "0.8"
include_dir = "0.7"
regex = "1.0"
libc = "0.2"
flate2 = "1.0"
prost = "0.13"
crossbeam-channel = "0.5"
crossterm = "0.28"
ctrlc = "3.4"
signal-hook = "0.3"
ahash = "0.8"
fd-lock = "4.0"
hashbrown = "0.14"
rhai = { version = "1.24", features = ["internals"] }
ratatui = { version = "0.30", features = ["scrolling-regions"] }
ratatui-macros = "0.7"
terminal-colorsaurus = "0.4"
[dev-dependencies]
assert_cmd = "2.0"
predicates = "3.0"
tempfile = "3.0"
criterion = "0.5"
uuid = { version = "1.0", features = ["v4"] }
jsonschema = "0.18"
# The profile that 'dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"
[package.metadata.dist]
# Homebrew tap to publish formula to
tap = "glasner/homebrew-tap"