-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (33 loc) · 879 Bytes
/
Cargo.toml
File metadata and controls
38 lines (33 loc) · 879 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
35
36
37
38
[package]
name = "context-cli"
version = "0.1.0"
edition = "2021"
rust-version = "1.74"
license = "Apache-2.0"
description = "Command-line interface for building, resolving, and inspecting deterministic context caches"
repository = "https://github.com/contextenginehq/context-cli"
homepage = "https://github.com/contextenginehq/context-engine"
documentation = "https://docs.rs/context-cli"
readme = "README.md"
keywords = ["context", "cli", "deterministic", "mcp", "llm"]
categories = ["command-line-utilities"]
include = [
"src/**",
"Cargo.toml",
"README.md",
"LICENSE",
"NOTICE",
]
[[bin]]
name = "context"
path = "src/main.rs"
[dependencies]
context-core = { version = "0.1.0", path = "../context-core" }
anyhow = "1.0"
clap = { version = "4.5", features = ["derive"] }
serde_json = "1.0"
walkdir = "2"
[dev-dependencies]
tempfile = "3"
[features]
default = []