-
-
Notifications
You must be signed in to change notification settings - Fork 109
/
Cargo.toml
33 lines (31 loc) · 793 Bytes
/
Cargo.toml
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
[package]
name = "watchfiles_rust_notify"
version = "0.0.0"
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",
"/requirements",
"/.cargo",
"!__pycache__",
"!tests/.mypy_cache",
"!tests/.pytest_cache",
"!*.so",
]
rust-version = "1.63"
[dependencies]
crossbeam-channel = "0.5.12"
notify = {git = "https://github.com/samuelcolvin/notify.git", branch = "keep-io-error"}
pyo3 = { version = "0.22.2", features = ["extension-module", "generate-import-lib"] }
[lib]
name = "_rust_notify"
crate-type = ["cdylib"]