-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (25 loc) · 795 Bytes
/
Cargo.toml
File metadata and controls
28 lines (25 loc) · 795 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
27
28
[package]
name = "opusic-c"
version = "1.5.4"
authors = ["Douman <[email protected]>"]
description = "High level bindings to libopus"
readme = "README.md"
repository = "https://github.com/DoumanAsh/opusic-c"
license = "BSD-3-Clause"
edition = "2018"
keywords = ["libopus", "opus", "codec"]
categories = ["encoding", "external-ffi-bindings", "multimedia::audio", "multimedia::encoding"]
[dependencies.opusic-sys]
version = "0.5.8"
default-features = false
[features]
default = ["bundled"]
# Enables DRED feature
dred = ["opusic-sys/dred"]
osce = ["opusic-sys/osce"]
no-hardening = ["opusic-sys/no-hardening"]
no-stack-protector = ["opusic-sys/no-stack-protector"]
no-fortify-source = ["opusic-sys/no-fortify-source"]
bundled = ["opusic-sys/bundled"]
[package.metadata.docs.rs]
features = ["dred"]