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:
parent
706391b272
commit
9e9b789d46
1 changed files with 1 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue