summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHubert Figuière <hub@figuiere.net>2024-01-05 22:27:16 -0500
committerHubert Figuière <hub@figuiere.net>2024-01-05 22:27:16 -0500
commitd35318967d45dd413c06015d2d513f3e35815440 (patch)
treecbdf439cf93a5c9d1654827ae380ff20e224e9af
parent3a293cfa8ee5a6293ef41f665745852cc1002f36 (diff)
mp4parse: Make this a separate crate as it is a fork
Signed-off-by: Hubert Figuière <hub@figuiere.net>
-rw-r--r--Cargo.toml2
-rw-r--r--lib/mp4/mp4parse/Cargo.toml4
2 files changed, 3 insertions, 3 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 309fe44..5437dfd 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -27,7 +27,7 @@ jpeg-decoder = "0.3.0"
lazy_static = "1.4.0"
libc = { version = "*", optional = true }
log = "0.4.19"
-mp4parse = { path = "lib/mp4/mp4parse", version = "0.12.0", features = [ "craw" ] }
+mp4parse = { package = "mp4parse-craw", path = "lib/mp4/mp4parse", version = "0.12.0", features = [ "craw" ] }
nalgebra = "0.32"
num_enum = "0.6.1"
once_cell = "1.18.0"
diff --git a/lib/mp4/mp4parse/Cargo.toml b/lib/mp4/mp4parse/Cargo.toml
index d56aeeb..8d70f90 100644
--- a/lib/mp4/mp4parse/Cargo.toml
+++ b/lib/mp4/mp4parse/Cargo.toml
@@ -1,5 +1,5 @@
[package]
-name = "mp4parse"
+name = "mp4parse-craw"
version = "0.12.0"
authors = [
"Ralph Giles <giles@mozilla.com>",
@@ -9,7 +9,7 @@ authors = [
"Bryce Seager van Dyk <bvandyk@mozilla.com>",
]
-description = "Parser for ISO base media file format (mp4)"
+description = "Parser for ISO base media file format (mp4) with CRAW support"
documentation = "https://docs.rs/mp4parse/"
license = "MPL-2.0"
categories = ["multimedia::video"]