chore(app): don't build doc-tests for lib; lib-tests for binary

There are no doctests and it's unlikely there will be anytime soon
as this library isn't for publishing.

The binary also doesn't have unit-tests, thus there is no need
to look for them.
This commit is contained in:
Sebastian Thiel 2024-03-28 08:49:53 +01:00
parent eed0fb1fbb
commit 3c7e238ca6
No known key found for this signature in database
GPG Key ID: 9CB5EE7895E8268B

View File

@ -6,6 +6,14 @@ rust-version = "1.57"
authors = ["GitButler <gitbutler@gitbutler.com>"]
publish = false
[lib]
doctest = false
[[bin]]
name = "gitbutler-app"
path = "src/main.rs"
test = false
[build-dependencies]
tauri-build = { version = "1.5", features = [] }