-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
73 lines (67 loc) · 2.26 KB
/
Copy pathCargo.toml
File metadata and controls
73 lines (67 loc) · 2.26 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
66
67
68
69
70
71
72
73
[package]
name = "cf-integration"
version = "0.3.2"
edition = "2024"
rust-version = "1.97"
license = "Apache-2.0"
publish = true
authors = ["ContextForge Authors"]
description = "Integration and conformance harness for ContextForge control-plane and data-plane services"
repository = "https://github.com/contextforge-org/contextforge-dev-tools"
homepage = "https://github.com/contextforge-org/contextforge-dev-tools"
readme = "README.md"
keywords = ["contextforge", "mcp", "integration-testing", "conformance"]
categories = ["command-line-utilities", "development-tools::testing"]
default-run = "cf-integration"
autobins = false
include = [
"/src/**",
"/docker/**",
"/scripts/locustfile_mcp.py",
"/scripts/live_protocol/sitecustomize.py",
"/tests/conformance/baselines/**",
"/README.md",
"/CHANGELOG.md",
"/LICENSE",
]
[[bin]]
name = "cf-integration"
path = "src/main.rs"
[dependencies]
anyhow = "1"
aws-lc-rs = "1"
axum = "0.8.9"
base64 = "0.22"
clap = { version = "4.5.60", features = ["derive"] }
include_dir = "0.7"
indicatif = { version = "0.18.6", default-features = false }
jsonwebtoken = { version = "11", default-features = false, features = ["aws_lc_rs", "use_pem"] }
pem = "3"
redis = { version = "1", default-features = false, features = ["tokio-comp"] }
reqwest = { version = "0.13.4", default-features = false, features = ["json", "rustls", "stream"] }
rmp-serde = "1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
thiserror = "2.0.18"
tokio = { version = "1.48", features = ["macros", "net", "process", "rt-multi-thread", "signal", "sync", "time"] }
url = "2.5.8"
uuid = { version = "1.23.1", features = ["v4", "serde"] }
yaml_serde = "0.10"
[dev-dependencies]
tempfile = "3"
tokio-stream = "0.1.18"
[package.metadata.binstall]
pkg-url = "{ repo }/releases/download/v{ version }/{ name }-{ target }{ archive-suffix }"
bin-dir = "{ bin }{ binary-ext }"
pkg-fmt = "tgz"
disabled-strategies = ["quick-install", "compile"]
[lints.rust]
unsafe_code = "forbid"
unreachable_pub = "deny"
[lints.clippy]
correctness = { level = "deny", priority = -1 }
suspicious = { level = "warn", priority = -1 }
style = { level = "warn", priority = -1 }
complexity = { level = "warn", priority = -1 }
perf = { level = "warn", priority = -1 }
unwrap_used = "warn"