-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
25 lines (21 loc) · 719 Bytes
/
Cargo.toml
File metadata and controls
25 lines (21 loc) · 719 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
[package]
name = "rf24-node"
version = "0.3.3"
repository.workspace = true
edition.workspace = true
license.workspace = true
rust-version = "1.88"
[lib]
crate-type = ["cdylib"]
[dependencies]
embedded-hal = "1.0.0"
# Default `napi` features: see https://nodejs.org/api/n-api.html#node-api-version-matrix
napi = "3.5.2"
napi-derive = "3.3.3"
rf24-rs = { path = "../../crates/rf24-rs", features = ["std"] }
rf24ble-rs = { path = "../../crates/rf24ble-rs", features = ["std"] }
[build-dependencies]
napi-build = "2.3.1"
[target.'cfg(target_os = "linux")'.dependencies]
linux-embedded-hal = {version = "0.4.1", default-features = false, features = ["gpio_cdev", "spi"]}
nix = { version = "0.30.1", features = ["time"]}