-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
51 lines (45 loc) · 1.35 KB
/
Cargo.toml
File metadata and controls
51 lines (45 loc) · 1.35 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
[package]
name = "apcore-toolkit"
version = "0.4.0"
edition = "2021"
description = "Shared scanner, schema extraction, and output toolkit for apcore framework adapters"
license = "Apache-2.0"
readme = "README.md"
authors = ["aiperceivable <tercel.yi@gmail.com>"]
homepage = "https://aiperceivable.com"
repository = "https://github.com/aiperceivable/apcore-toolkit-rust"
documentation = "https://github.com/aiperceivable/apcore-toolkit-rust#readme"
keywords = ["apcore", "mcp", "scanner", "schema", "toolkit"]
categories = [
"api-bindings",
"development-tools",
"web-programming",
]
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[dependencies]
apcore = ">=0.14"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_yaml = "0.9"
regex = "1"
syn = { version = "2", features = ["parsing", "full"] }
chrono = { version = "0.4", features = ["serde"] }
tracing = "0.1"
thiserror = "2"
async-trait = "0.1"
# Required transitively by apcore (registry, executor, context).
tokio = { version = "1", features = ["full"] }
# Used by ai_enhancer for synchronous SLM API calls (always included).
ureq = { version = "3", features = ["json"] }
[dependencies.reqwest]
version = "0.12"
features = ["json"]
optional = true
[features]
default = []
http-proxy = ["dep:reqwest"]
[dev-dependencies]
tokio-test = "0.4"
tempfile = "3"