-
-
Notifications
You must be signed in to change notification settings - Fork 133
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (34 loc) · 742 Bytes
/
Cargo.toml
File metadata and controls
36 lines (34 loc) · 742 Bytes
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
36
[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", features = [
"extension-module",
"generate-import-lib",
] }
[lib]
name = "_rust_notify"
crate-type = ["cdylib"]