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
|
# SPDX-FileCopyrightText: Peter Pentchev <roam@ringlet.net>
# SPDX-License-Identifier: BSD-2-Clause
[package]
name = "mtv-extract"
version = "0.2.1"
rust-version = "1.87"
edition = "2024"
authors = ["Peter Pentchev <roam@ringlet.net>"]
description = "Read media type strings, extract the format versions from them"
license = "BSD-2-Clause"
readme = "../../README.md"
repository = "https://gitlab.com/ppentchev/media-type-version"
keywords = ["mediaType", "media-type", "version"]
categories = ["command-line-utilities", "config", "data-structures", "parser-implementations"]
[dependencies]
eyre = "0.6.12"
argh = { version = "0.1.13", default-features = false, features = ["help"] }
boml = "1.0.2"
itertools = "0.14"
log = { version = "0.4.27", default-features = false }
serialzero = "0.1"
simple_logger = { version = "5", default-features = false, features = ["stderr"] }
[dependencies.media-type-version]
version = "= 0.2.1"
path = "../media-type-version"
features = [
"alloc",
"json-serialzero0-unstable",
"toml-boml1",
]
[dev-dependencies]
camino = "1.1.10"
facet-testhelpers = "0.32.3"
feature-check = "2.3.0"
tempfile = "3.20"
|