Fix invalid botserver dependency in bottest/Cargo.toml

Remove botserver dependency since it's a binary-only crate with no lib target.
Integration tests should spawn the botserver process instead of linking it as a library.
This fixes the warning: 'ignoring invalid dependency botserver which is missing a lib target'
This commit is contained in:
root 2026-02-06 22:11:55 +00:00
parent 706391b272
commit 9e9b789d46

View file

@ -7,8 +7,7 @@ license = "AGPL-3.0"
repository = "https://github.com/GeneralBots/BotServer"
[dependencies]
# The server we're testing - include drive and cache for required deps
botserver = { path = "../botserver", default-features = false, features = ["chat", "llm", "automation", "tasks", "directory", "drive", "cache"] }
# Note: botserver is a binary-only crate, tested by spawning the process
botlib = { path = "../botlib", features = ["database"] }
# Async runtime