[package]
edition = "2024"
rust-version = "1.91.0"
name = "ts_python"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "pyo3-based python bindings for tailscale"
readme = "README.md"
keywords = [
"tailscale",
"python",
"bindings",
"pyo3",
]
categories = [
"api-bindings",
"network-programming",
]
license = "BSD-3-Clause"
repository = "https://github.com/tailscale/tailscale-rs"
[lib]
name = "tailscale"
crate-type = ["cdylib"]
path = "src/lib.rs"
doc = false
[dependencies.pyo3]
version = "0.28"
features = [
"bytes",
"abi3-py312",
]
[dependencies.pyo3-async-runtimes]
version = "0.28"
features = [
"tokio-runtime",
"attributes",
]
[dependencies.tailscale]
version = "0.2.0"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[lints.clippy]
multiple_crate_versions = "allow"
too_many_arguments = "allow"
[lints.clippy.cargo]
level = "warn"
priority = -1
[lints.rust]
closure_returning_async_block = "warn"
let-underscore = "warn"
missing_docs = "warn"
[lints.rustdoc]
bare_urls = "deny"
broken_intra_doc_links = "deny"
invalid_html_tags = "deny"
private_intra_doc_links = "deny"