-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
25 lines (22 loc) · 752 Bytes
/
Cargo.toml
File metadata and controls
25 lines (22 loc) · 752 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 = "rusty_link"
version = "0.4.8"
authors = ["Andreas Mueller <anzbert@gmail.com>"]
edition = "2024"
description = "Rust bindings for Ableton Link through the official C Wrapper (abl_link)"
repository = "https://github.com/anzbert/rusty_link"
readme = "README.md"
license = "GPL-2.0-or-later"
keywords = ["ableton", "link"]
categories = ["api-bindings"]
[dependencies]
# The Ableton Link C++ source code is included as a git submodule in the /link folder
[dev-dependencies]
# These dev-dependencies are only used by the /examples.
crossterm = "^0.29.0"
cpal = "0.17.1"
# cpal = { version = "0.17.1", features = ["asio"] }
# cpal = { version = "0.17.1", features = ["jack"] }
[build-dependencies]
cmake = "^0.1.57"
bindgen = "^0.72.1"