media 0.8.2

A pure Rust media framework
Documentation
# 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 are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
rust-version = "1.83.0"
name = "media"
version = "0.8.2"
authors = ["Zhou Wei <zhouwei@ehom.net>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A pure Rust media framework"
homepage = "https://github.com/rust-media"
documentation = "https://docs.rs/media"
readme = "README.md"
keywords = [
    "audio",
    "media",
    "video",
]
categories = [
    "multimedia",
    "multimedia::audio",
    "multimedia::video",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-media/media-rs"

[package.metadata.docs.rs]
default-target = "x86_64-pc-windows-msvc"
targets = [
    "x86_64-pc-windows-msvc",
    "x86_64-apple-darwin",
    "x86_64-apple-ios",
    "aarch64-apple-darwin",
    "aarch64-apple-ios",
]

[features]
audio = [
    "media-core/audio",
    "media-codec?/audio",
    "media-device?/audio",
]
codec = ["dep:media-codec"]
default = [
    "audio",
    "video",
    "codec",
    "device",
]
device = ["dep:media-device"]
video = [
    "media-core/video",
    "media-codec?/video",
    "media-device?/video",
]

[lib]
name = "media"
path = "src/lib.rs"

[dependencies.media-codec]
version = "0.8.2"
optional = true
default-features = false

[dependencies.media-core]
version = "0.8.2"
default-features = false

[dependencies.media-device]
version = "0.8.2"
optional = true
default-features = false