Add `publish = false` to pyo3-ffi-check and pytests crate

This commit is contained in:
messense 2022-12-03 21:12:54 +08:00
parent c776792f9d
commit 272df32277
No known key found for this signature in database
GPG Key ID: BB41A8A2C716CCA9
2 changed files with 2 additions and 0 deletions

View File

@ -2,6 +2,7 @@
name = "pyo3-ffi-check"
version = "0.1.0"
edition = "2021"
publish = false
[dependencies]
pyo3-ffi-check-macro = { path = "./macro" }

View File

@ -4,6 +4,7 @@ name = "pyo3-pytests"
version = "0.1.0"
description = "Python-based tests for PyO3"
edition = "2018"
publish = false
[dependencies]
pyo3 = { path = "../", features = ["extension-module"] }