-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathCargo.toml
More file actions
67 lines (62 loc) · 2.46 KB
/
Cargo.toml
File metadata and controls
67 lines (62 loc) · 2.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
66
67
[package]
name = "agent-client-protocol"
authors = ["Zed <hi@zed.dev>"]
version = "0.10.5"
edition = "2024"
license = "Apache-2.0"
description = "A protocol for standardizing communication between code editors and AI coding agents"
repository = "https://github.com/agentclientprotocol/rust-sdk"
homepage = "https://github.com/agentclientprotocol/rust-sdk"
documentation = "https://docs.rs/agent-client-protocol"
readme = "README.md"
keywords = ["agent", "client", "protocol", "ai", "editor"]
categories = ["development-tools", "api-bindings"]
[features]
unstable = [
"unstable_auth_methods",
"unstable_cancel_request",
"unstable_elicitation",
"unstable_logout",
"unstable_nes",
"unstable_session_additional_directories",
"unstable_session_fork",
"unstable_session_close",
"unstable_session_model",
"unstable_session_resume",
"unstable_session_usage",
"unstable_message_id",
"unstable_boolean_config",
]
unstable_auth_methods = ["agent-client-protocol-schema/unstable_auth_methods"]
unstable_cancel_request = ["agent-client-protocol-schema/unstable_cancel_request"]
unstable_elicitation = ["agent-client-protocol-schema/unstable_elicitation"]
unstable_logout = ["agent-client-protocol-schema/unstable_logout"]
unstable_nes = ["agent-client-protocol-schema/unstable_nes"]
unstable_session_additional_directories = ["agent-client-protocol-schema/unstable_session_additional_directories"]
unstable_session_fork = ["agent-client-protocol-schema/unstable_session_fork"]
unstable_session_model = ["agent-client-protocol-schema/unstable_session_model"]
unstable_session_resume = ["agent-client-protocol-schema/unstable_session_resume"]
unstable_session_usage = ["agent-client-protocol-schema/unstable_session_usage"]
unstable_session_close = ["agent-client-protocol-schema/unstable_session_close"]
unstable_message_id = ["agent-client-protocol-schema/unstable_message_id"]
unstable_boolean_config = ["agent-client-protocol-schema/unstable_boolean_config"]
[dependencies]
agent-client-protocol-schema.workspace = true
anyhow.workspace = true
async-broadcast.workspace = true
async-trait.workspace = true
derive_more.workspace = true
futures.workspace = true
log.workspace = true
serde.workspace = true
serde_json.workspace = true
[dev-dependencies]
env_logger.workspace = true
futures-util.workspace = true
piper.workspace = true
pretty_assertions.workspace = true
rustyline.workspace = true
tokio.workspace = true
tokio-util.workspace = true
[lints]
workspace = true