media-format 0.9.1

A generic framework for demuxing and muxing media containers
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"
name = "media-format"
version = "0.9.1"
authors = ["Zhou Wei <zhouwei@ehom.net>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A generic framework for demuxing and muxing media containers"
homepage = "https://github.com/rust-media"
documentation = "https://docs.rs/media-format"
readme = "README.md"
keywords = [
    "container",
    "demuxer",
    "muxer",
]
categories = [
    "multimedia",
    "multimedia::audio",
    "multimedia::video",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-media/media-rs"

[features]
all-demuxers = [
    "isomp4",
    "matroska",
]
all-formats = [
    "all-demuxers",
    "all-muxers",
]
all-muxers = []
audio = [
    "media-core/audio",
    "media-format-types/audio",
    "media-format-isomp4?/audio",
    "media-format-matroska?/audio",
]
default = [
    "audio",
    "video",
    "demuxer",
    "all-formats",
]
demuxer = [
    "media-format-types/demuxer",
    "media-format-isomp4?/demuxer",
    "media-format-matroska?/demuxer",
]
isomp4 = ["dep:media-format-isomp4"]
matroska = ["dep:media-format-matroska"]
muxer = [
    "media-format-types/muxer",
    "media-format-isomp4?/muxer",
    "media-format-matroska?/muxer",
]
video = [
    "media-core/video",
    "media-format-types/video",
    "media-format-isomp4?/video",
    "media-format-matroska?/video",
]

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

[dependencies.ctor]
version = "0.6.3"

[dependencies.media-codec-types]
version = "0.9.1"
default-features = false

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

[dependencies.media-format-isomp4]
version = "0.1.0"
optional = true
default-features = false

[dependencies.media-format-matroska]
version = "0.1.0"
optional = true
default-features = false

[dependencies.media-format-types]
version = "0.9.1"
default-features = false