-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
65 lines (58 loc) · 1.46 KB
/
Cargo.toml
File metadata and controls
65 lines (58 loc) · 1.46 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
[workspace]
members = [".", "apps/eval"]
resolver = "2"
[workspace.dependencies]
anyhow = "1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
regex = "1"
tokio = { version = "1", features = ["full"] }
reqwest = { version = "0.12", features = ["json", "stream"] }
clap = { version = "4", features = ["derive", "env"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
[package]
name = "generative-artifact-protocol"
version = "0.15.3"
edition = "2021"
description = "Generative Artifact Protocol (GAP) — token-efficient artifact generation and updates for LLMs"
license = "Apache-2.0"
repository = "https://github.com/urmzd/generative-artifact-protocol"
homepage = "https://github.com/urmzd/generative-artifact-protocol"
readme = "README.md"
keywords = ["gap", "llm", "artifact", "apply-engine", "generative"]
categories = ["text-processing"]
exclude = [
"apps/",
"assets/",
"spec/",
"scripts/",
".github/",
".githooks/",
"justfile",
"sr.yaml",
"target/",
]
[lib]
name = "gap"
path = "src/lib.rs"
crate-type = ["lib", "cdylib"]
[dependencies]
anyhow.workspace = true
serde.workspace = true
serde_json.workspace = true
regex.workspace = true
sha2 = "0.10"
tracing.workspace = true
tracing-subscriber.workspace = true
tracing-opentelemetry = "0.29"
opentelemetry = "0.28"
opentelemetry_sdk = "0.28"
[features]
default = []
[dev-dependencies]
criterion = "0.5"
tempfile = "3"
[[bench]]
name = "gap"
harness = false