
This pull request introduces title generation and history replaying. We still need to wire up the rest of the history but this gets us very close. I extracted a lot of this code from `agent2-history` because that branch was starting to get long-lived and there were lots of changes since we started. Release Notes: - N/A
62 lines
1.4 KiB
TOML
62 lines
1.4 KiB
TOML
[package]
|
|
name = "agent_servers"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
publish.workspace = true
|
|
license = "GPL-3.0-or-later"
|
|
|
|
[features]
|
|
test-support = ["acp_thread/test-support", "gpui/test-support", "project/test-support"]
|
|
e2e = []
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[lib]
|
|
path = "src/agent_servers.rs"
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
acp_thread.workspace = true
|
|
action_log.workspace = true
|
|
agent-client-protocol.workspace = true
|
|
agent_settings.workspace = true
|
|
agentic-coding-protocol.workspace = true
|
|
anyhow.workspace = true
|
|
collections.workspace = true
|
|
context_server.workspace = true
|
|
futures.workspace = true
|
|
gpui.workspace = true
|
|
indoc.workspace = true
|
|
itertools.workspace = true
|
|
language_model.workspace = true
|
|
language_models.workspace = true
|
|
log.workspace = true
|
|
paths.workspace = true
|
|
project.workspace = true
|
|
rand.workspace = true
|
|
schemars.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
settings.workspace = true
|
|
smol.workspace = true
|
|
strum.workspace = true
|
|
tempfile.workspace = true
|
|
thiserror.workspace = true
|
|
ui.workspace = true
|
|
util.workspace = true
|
|
uuid.workspace = true
|
|
watch.workspace = true
|
|
which.workspace = true
|
|
workspace-hack.workspace = true
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
libc.workspace = true
|
|
nix.workspace = true
|
|
|
|
[dev-dependencies]
|
|
env_logger.workspace = true
|
|
language.workspace = true
|
|
indoc.workspace = true
|
|
acp_thread = { workspace = true, features = ["test-support"] }
|
|
gpui = { workspace = true, features = ["test-support"] }
|