File: Cargo.toml.orig

package info (click to toggle)
rust-ogg 0.7.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 196 kB
  • sloc: makefile: 2
file content (25 lines) | stat: -rw-r--r-- 621 bytes parent folder | download
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
[package]
name = "ogg"
version = "0.7.0"
authors = ["est31 <MTest31@outlook.com>"]
description = "Ogg container decoder and encoder written in pure Rust"
license = "BSD-3-Clause"
keywords = ["ogg", "decoder", "encoder", "xiph"]
documentation = "https://docs.rs/ogg/0.7.0"
repository = "https://github.com/RustAudio/ogg"
readme = "README.md"

[lib]
name = "ogg"

[dependencies]
byteorder = "1.0"
tokio-io = { version = "0.1", optional = true }
futures = { version = "0.1", optional = true }
bytes = { version = "0.4", optional = true }

[dev-dependencies]
rand = "0.3"

[features]
async = ["tokio-io", "futures", "bytes"]