-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (30 loc) · 941 Bytes
/
Copy pathCargo.toml
File metadata and controls
32 lines (30 loc) · 941 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
[workspace]
resolver = "2"
members = [
"crates/tare-core",
"crates/tare-tokenize",
"crates/tare-cache",
"crates/tare-proxy",
"crates/tare-bench",
"crates/tare-cli",
"crates/tare-mcp",
"crates/tare-memory",
"crates/tare-py",
]
[workspace.package]
version = "0.2.0"
edition = "2021"
rust-version = "1.82"
license = "MIT"
description = "Query-aware, cache-correct, lossless-by-default context compression for LLM coding agents."
repository = "https://github.com/mstuart/tare"
homepage = "https://github.com/mstuart/tare"
readme = "README.md"
authors = ["Mark Stuart <mstuart@users.noreply.github.com>"]
keywords = ["llm", "context", "compression", "proxy", "tokens"]
categories = ["command-line-utilities", "network-programming", "compression"]
[workspace.dependencies]
serde = { version = "1", features = ["derive"] }
regex = "1"
xxhash-rust = { version = "0.8", features = ["xxh3"] }
tiktoken-rs = "0.6"