-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
38 lines (29 loc) · 1013 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
34
35
36
37
38
[package]
name = "sndfile"
version = "0.1.1"
authors = ["tuxzz <[email protected]>"]
edition = "2018"
license = "MIT"
description = "A library for reading and writing audio files."
readme = "README.md"
documentation = "https://docs.rs/sndfile"
repository = "https://github.com/Xeiron/sndfile.rs"
keywords = ["libsndfile", "sound", "audio", "encoding", "compression"]
categories = [ "multimedia", "multimedia::audio", "multimedia::encoding", "api-bindings", "compression" ]
[features]
default = []
ndarray_features = ["ndarray"]
[dependencies]
sndfile-sys = "0.2"
lazy_static = "1"
ndarray = { version = "0.13", optional = true }
[dev-dependencies]
tempfile = "3"
[package.metadata.docs.rs]
all-features = true
[badges]
appveyor = { repository = "Xeiron/sndfile.rs" }
travis-ci = { repository = "Xeiron/sndfile.rs" }
is-it-maintained-issue-resolution = { repository = "Xeiron/sndfile.rs" }
is-it-maintained-open-issues = { repository = "Xeiron/sndfile.rs" }
maintenance = { status = "passively-maintained" }