-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
43 lines (36 loc) · 1.11 KB
/
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
42
43
[workspace]
members = [".", "opusenc-sys"]
[package]
name = "opusenc"
version = "0.2.2"
edition = "2021"
authors = ["d-k-bo <[email protected]>"]
description = "High-level bindings for libopusenc."
repository = "https://github.com/d-k-bo/opusenc-rs"
license = "BSD-3-Clause"
keywords = ["opus", "vorbis", "codec", "audio", "music"]
categories = ["api-bindings", "multimedia::audio"]
[features]
default = []
encoder-options = []
[dependencies]
cstr = "0.2.11"
num_enum = "0.7.2"
opusenc-sys = { version = "0.2.2", path = "opusenc-sys" }
[dev-dependencies]
hound = "3.5.1"
[[package.metadata.release.pre-release-replacements]]
file = "CHANGELOG.md"
search = "## \\[Unreleased\\]"
replace = """## [Unreleased]\n\n## [{{version}}] - {{date}}"""
exactly = 1
[[package.metadata.release.pre-release-replacements]]
file = "CHANGELOG.md"
search = "\\.\\.\\.HEAD"
replace = "...{{tag_name}}"
exactly = 1
[[package.metadata.release.pre-release-replacements]]
file = "CHANGELOG.md"
search = "\\[Unreleased\\]: "
replace = """[Unreleased]: https://github.com/d-k-bo/opusenc-rs/compare/{{tag_name}}...HEAD\n[{{version}}]: """
exactly = 1