-
Notifications
You must be signed in to change notification settings - Fork 196
Expand file tree
/
Copy pathCargo.toml
More file actions
63 lines (58 loc) · 1.9 KB
/
Cargo.toml
File metadata and controls
63 lines (58 loc) · 1.9 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
[package]
name = "agent-client-protocol-schema"
authors = ["Zed <hi@zed.dev>"]
version = "0.11.3"
edition = "2024"
license = "Apache-2.0"
description = "A protocol for standardizing communication between code editors and AI coding agents"
repository = "https://github.com/agentclientprotocol/agent-client-protocol"
homepage = "https://github.com/agentclientprotocol/agent-client-protocol"
documentation = "https://docs.rs/agent-client-protocol-schema"
readme = "README.md"
keywords = ["agent", "client", "protocol", "ai", "editor"]
categories = ["development-tools", "api-bindings"]
include = ["/src/**/*.rs", "/README.md", "/LICENSE", "/Cargo.toml"]
[features]
unstable = [
"unstable_auth_methods",
"unstable_cancel_request",
"unstable_session_fork",
"unstable_session_model",
"unstable_session_resume",
"unstable_session_close",
"unstable_session_usage",
"unstable_message_id",
"unstable_boolean_config",
]
unstable_auth_methods = []
unstable_cancel_request = []
unstable_session_fork = []
unstable_session_model = []
unstable_session_resume = []
unstable_session_close = []
unstable_session_usage = []
unstable_message_id = []
unstable_boolean_config = []
[[bin]]
name = "generate"
path = "src/bin/generate.rs"
[dependencies]
anyhow = "1"
derive_more = { version = "2", features = ["from", "display"] }
schemars = { version = "1" }
serde = { version = "1", features = ["derive", "rc"] }
serde_json = { version = "1", features = ["raw_value"] }
strum = { version = "0.28", features = ["derive"] }
[lints.rust]
future_incompatible = { level = "warn", priority = -1 }
let-underscore = "warn"
missing_debug_implementations = "warn"
# missing_docs = "warn"
nonstandard_style = { level = "warn", priority = -1 }
rust_2018_idioms = { level = "warn", priority = -1 }
unused = { level = "warn", priority = -1 }
[lints.clippy]
cargo = "warn"
exhaustive_enums = "warn"
exhaustive_structs = "warn"
pedantic = "warn"