-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
31 lines (26 loc) · 863 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
[package]
name = "audiograph"
version = "0.5.1"
authors = ["Bennett Hardwick <me@bennetthardwick.com>"]
edition = "2018"
license = "MIT"
description = "An audio graph optimised for performance and limiting runtime allocations"
repository = "https://github.com/bennetthardwick/audio-graph"
readme = "README.md"
categories = [ "algorithms", "data-structures", "multimedia" ]
keywords = [ "audio", "dsp", "graph" ]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
# [profile.release]
# debug = true
[dependencies]
sample = "0.10.0"
bufferpool = "0.1.6"
generational-arena = { version = "0.2.7", features = ["serde"] }
[dev-dependencies]
dsp-chain = "0"
lazy_static = "1"
jack = "0.6"
crossbeam = "0.7"
alloc_counter = "0.0.4"
[badges]
travis-ci = { repository = "https://github.com/bennetthardwick/audio-graph" }