1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
|
[package]
name = "watchfiles_rust_notify"
version = "1.1.1"
edition = "2021"
license = "MIT"
homepage = "https://github.com/samuelcolvin/watchfiles"
repository = "https://github.com/samuelcolvin/watchfiles/watchfiles.git"
readme = "README.md"
include = [
"/pyproject.toml",
"/README.md",
"/LICENSE",
"/Makefile",
"/src",
"/watchfiles",
"/tests",
"/uv.lock",
"/.cargo",
"!__pycache__",
"!tests/.mypy_cache",
"!tests/.pytest_cache",
"!*.so",
]
rust-version = "1.77"
[dependencies]
crossbeam-channel = "0.5.15"
notify = { version = "8.0.0" }
pyo3 = { version = ">=0.26.0,<0.29.0", features = [
"extension-module",
] }
[lib]
name = "_rust_notify"
crate-type = ["cdylib"]
|