forked from kakxem/node-pipewire
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
33 lines (26 loc) · 864 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 = "node-pipewire"
version = "1.0.0"
license = "MIT"
edition = "2018"
exclude = ["index.node"]
[lib]
crate-type = ["cdylib"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
lazy_static = "1.4.0"
once_cell = "1"
tokio = { version = "1", features = ["rt-multi-thread", "time"] }
pipewire = "0.7.2"
serde_json = "1.0"
[dependencies.neon]
version = "0.10"
default-features = false
features = ["channel-api", "napi-6", "promise-api"]
# Compilation target for the native code
[package.metadata.cross.target.x86_64-unknown-linux-gnu]
dockerfile = 'dockerfiles/Dockerfile.x86_64'
[package.metadata.cross.target.aarch64-unknown-linux-gnu]
dockerfile = 'dockerfiles/Dockerfile.aarch64'
[package.metadata.cross.target.arm-unknown-linux-gnueabihf]
dockerfile = 'dockerfiles/Dockerfile.armhf'