-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
41 lines (35 loc) · 1011 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
39
40
41
[package]
name = "mp3lame-sys"
version = "0.1.8"
edition = "2021"
repository = "https://github.com/DoumanAsh/mp3lame-sys"
description = "Bindings to mp3lame library"
keywords = ["lame", "mp3", "mp3lame", "libmp3lame", "codec"]
categories = ["encoding", "external-ffi-bindings", "multimedia::audio", "multimedia::encoding"]
license = "LGPL-3.0"
include = [
"src/**",
"lame-3.100/**",
"Cargo.toml",
"README.md",
"LICENSE",
"build.rs"
]
# DO NOT PUBLISH FROM windows
# It will screw permissions of configure script
publish = false
[dependencies.libc]
version = "0.2"
default-features = false
[target.'cfg(unix)'.build-dependencies.autotools]
version = "0.2.6"
[target.'cfg(windows)'.build-dependencies.cc]
version = "1.0.77"
[features]
# Include decoder code (it is under GPL license which is pretty shite)
decoder = []
# Adjusts `HOST` when compiling C library to triplet in `TARGET`
# Only relevant on unix systems
target_host = []
[package.metadata.docs.rs]
features = ["decoder"]