-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
47 lines (42 loc) · 1.09 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
[package]
name = "libpd-rs"
version = "0.2.0"
authors = ["alisomay <[email protected]>"]
edition = "2021"
license = "BSD-3-Clause"
description = "Safe rust abstractions over libpd"
readme = "README.md"
homepage = "https://github.com/alisomay/libpd-rs"
repository = "https://github.com/alisomay/libpd-rs"
documentation = "https://docs.rs/libpd-rs/latest/libpd_rs/#"
keywords = ["puredata", "libpd", "audio", "midi", "bindings"]
categories = ["multimedia"]
exclude = ["tests/*", "assets/favicon/*", "assets/logo_*"]
[lib]
name = "libpd_rs"
path = "src/lib.rs"
test = true
doctest = true
bench = false
doc = true
edition = "2021"
crate-type = ["lib"]
[dependencies]
libpd-sys = "0.3"
thiserror = "2"
libffi = "3.0.0"
tempfile = "3.3.0"
embed-doc-image = "0.1.4"
[dev-dependencies]
cpal = "0.15.3"
sys-info = "0.9.1"
nannou = "0.19"
nannou_audio = "0.19"
rand = "0.8.5"
serial_test = "3"
# For local development,
# [patch.crates-io]
# libpd-sys = { git = "https://github.com/alisomay/libpd-sys" }
# For local development,
# [patch."https://github.com/alisomay/libpd-sys"]
# libpd-sys = { path = "../libpd-sys" }