blob: a245c9ec66330e73b4d5c98efbfd40eeea9f39b3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
[package]
name = "nseventforwarder"
description = "Node.js module for monitoring NSEvents"
authors.workspace = true
repository.workspace = true
license.workspace = true
edition.workspace = true
rust-version.workspace = true
exclude = ["index.node"]
[lints]
workspace = true
[lib]
crate-type = ["cdylib"]
path = "nseventforwarder-rs/lib.rs"
[target.'cfg(target_os = "macos")'.dependencies]
neon = "1"
block2 = "0.5.1"
objc2-app-kit = { version = "0.2.2", features = ["NSEvent", "block2"] }
|