Disable empty doc-tests and add terse test output alias

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Bryan Helmkamp 2026-02-23 10:57:26 -05:00
parent 4915574f96
commit f6bf30de3e
4 changed files with 11 additions and 0 deletions

2
.cargo/config.toml Normal file
View file

@ -0,0 +1,2 @@
[alias]
t = "test -- --format terse"

View file

@ -9,6 +9,9 @@ readme = "README.md"
keywords = ["llm", "ai", "agent", "coding"]
categories = ["api-bindings"]
[lib]
doctest = false
[dependencies]
llm = { path = "../llm" }
thiserror.workspace = true

View file

@ -9,6 +9,9 @@ keywords = ["llm", "ai", "pipeline", "workflow", "dot"]
categories = ["development-tools"]
readme = "README.md"
[lib]
doctest = false
[[bin]]
name = "attractor"
path = "src/main.rs"

View file

@ -9,6 +9,9 @@ readme = "README.md"
keywords = ["llm", "ai", "openai", "anthropic"]
categories = ["api-bindings"]
[lib]
doctest = false
[[bin]]
name = "ullm"
path = "src/bin/ullm.rs"