Live video on the AT Protocol
at natb/command-errors 22 lines 625 B view raw
1[package] 2name = "export_c2pa_schema" 3authors = ["Streamplace <support@stream.place>"] 4license = "MIT OR Apache-2.0" 5edition = "2018" 6rust-version = "1.86.0" 7 8[lints.rust] 9unexpected_cfgs = { level = "warn", check-cfg = ['cfg(test)'] } 10# Workaround for https://github.com/est31/cargo-udeps/issues/293. 11 12[dependencies] 13anyhow = "1.0.40" 14c2pa = { git = "https://github.com/hyphacoop/c2pa-rs.git", rev = "1b84d40219b27340a30fc309250e774e8a7b7761", features = [ 15 "openssl", 16 "file_io", 17 "json_schema", 18] } 19schemars = "0.8.21" 20serde_json = "1.0.117" 21serde = { version = "1.0.197", features = ["derive"] } 22serde_with = "3.11.0"