-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (31 loc) · 991 Bytes
/
Copy pathCargo.toml
File metadata and controls
34 lines (31 loc) · 991 Bytes
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
[package]
name = "skillleaf"
version = "0.2.0"
edition = "2024"
description = "Local-first deterministic routing and lazy hydration for AI agent skills"
license-file = "LICENSE"
documentation = "https://docs.rs/skillleaf"
homepage = "https://codebridge.com.au"
repository = "https://github.com/derek-codebridge/Skill-Leaf"
keywords = ["ai", "agents", "skills", "cli", "context"]
categories = ["command-line-utilities", "development-tools"]
[dependencies]
anyhow = "1.0"
axum = { version = "0.8", default-features = false, features = ["http1", "json", "tokio"] }
clap = { version = "4.5", features = ["derive", "env"] }
fs2 = "0.4"
pulldown-cmark = "0.13"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
sha2 = "0.11"
tempfile = "3.20"
thiserror = "2.0"
tokio = { version = "1.53", features = ["macros", "net", "rt-multi-thread"] }
walkdir = "2.5"
[dev-dependencies]
assert_cmd = "2.0"
predicates = "3.1"
[profile.release]
lto = "thin"
codegen-units = 1
strip = true