exclude packages from tests so cargo test --all works

This commit is contained in:
Vinzenz Schroeter 2024-05-26 13:25:36 +02:00
parent d1db850fd4
commit 5514f60c28
3 changed files with 6 additions and 0 deletions

1
Cargo.lock generated
View file

@ -629,6 +629,7 @@ name = "servicepoint_binding_cs"
version = "0.4.2" version = "0.4.2"
dependencies = [ dependencies = [
"csbindgen", "csbindgen",
"servicepoint",
"servicepoint_binding_c", "servicepoint_binding_c",
] ]

View file

@ -7,9 +7,11 @@ readme = "../../README.md"
[lib] [lib]
crate-type = ["cdylib"] crate-type = ["cdylib"]
test = false
[build-dependencies] [build-dependencies]
csbindgen = "1.8.0" csbindgen = "1.8.0"
[dependencies] [dependencies]
servicepoint_binding_c = { path = "../servicepoint_binding_c" } servicepoint_binding_c = { path = "../servicepoint_binding_c" }
servicepoint = { path = "../servicepoint" }

View file

@ -4,6 +4,9 @@ version = "0.1.0"
edition = "2021" edition = "2021"
publish = false publish = false
[lib]
test = false
[build-dependencies] [build-dependencies]
cc = "1.0" cc = "1.0"