-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (22 loc) · 716 Bytes
/
Copy pathCargo.toml
File metadata and controls
26 lines (22 loc) · 716 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
26
[package]
name = "lame-sys"
version = "0.1.3"
authors = ["Edward Barnard <eabarnard@gmail.com>"]
description = "FFI bindings to libmp3lame"
documentation = "https://docs.rs/lame-sys/0.1.3"
homepage = "https://github.com/ebarnard/lame-sys"
repository = "https://github.com/ebarnard/lame-sys"
keywords = ["lame", "mp3", "mp3lame", "libmp3lame", "codec"]
categories = ["encoding", "external-ffi-bindings", "multimedia::audio", "multimedia::encoding"]
license = "MIT/Apache-2.0/LGPL-2.1"
links = "mp3lame"
build = "build.rs"
[features]
default = []
bundled = ["gcc"]
[dependencies]
libc = "0.2.12"
[build-dependencies]
gcc = { version = "0.3.50", optional = true }
[package.metadata.docs.rs]
features = [ "bundled" ]