Files
another-boids-in-rust/vendor/lewton/Cargo.toml

65 lines
1.5 KiB
TOML

# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies
#
# If you believe there's an error in this file please file an
# issue against the rust-lang/cargo repository. If you're
# editing this file be aware that the upstream Cargo.toml
# will likely look very different (and much more reasonable)
[package]
edition = "2015"
name = "lewton"
version = "0.10.2"
authors = ["est31 <MTest31@outlook.com>"]
description = "Pure Rust vorbis decoder"
documentation = "https://docs.rs/lewton"
readme = "README.md"
keywords = ["ogg", "vorbis", "decoder", "audio"]
categories = ["compression", "multimedia::audio", "multimedia::encoding"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/RustAudio/lewton"
[package.metadata.docs.rs]
features = ["async_ogg"]
[lib]
name = "lewton"
[[example]]
name = "perf"
required-features = ["ogg"]
[[example]]
name = "player"
required-features = ["ogg"]
[dependencies.byteorder]
version = "1.0"
[dependencies.futures]
version = "0.1"
optional = true
[dependencies.ogg]
version = "0.8"
optional = true
[dependencies.tinyvec]
version = "1.0"
features = ["alloc"]
[dependencies.tokio-io]
version = "0.1"
optional = true
[dev-dependencies.alto]
version = "3"
[dev-dependencies.ogg]
version = "0.8"
[features]
async_ogg = ["ogg", "ogg/async", "futures", "tokio-io"]
default = ["ogg"]