diff options
author | metamuffin <metamuffin@disroot.org> | 2023-03-09 22:01:20 +0100 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2023-03-09 22:01:20 +0100 |
commit | 7494981595712cf42681823e8fd79977b9b5f9dc (patch) | |
tree | 7f85af24f4c1e56b6cf1c7baf6fe8a6cd798c7b3 /lvc/codec-web/Cargo.toml | |
parent | 11b78570656bd0ca67594472765fc629aa25fd25 (diff) | |
download | video-codec-experiments-7494981595712cf42681823e8fd79977b9b5f9dc.tar video-codec-experiments-7494981595712cf42681823e8fd79977b9b5f9dc.tar.bz2 video-codec-experiments-7494981595712cf42681823e8fd79977b9b5f9dc.tar.zst |
web!
Diffstat (limited to 'lvc/codec-web/Cargo.toml')
-rw-r--r-- | lvc/codec-web/Cargo.toml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/lvc/codec-web/Cargo.toml b/lvc/codec-web/Cargo.toml new file mode 100644 index 0000000..f1a3f6a --- /dev/null +++ b/lvc/codec-web/Cargo.toml @@ -0,0 +1,13 @@ +[package] +name = "codec-web" +version = "0.1.0" +edition = "2021" + +[lib] +crate-type = ["cdylib"] + +[dependencies] +bv1 = { path = "../codec" } +wasm-bindgen = "0.2.84" +js-sys = "0.3.61" +console_error_panic_hook = "0.1.7" |