-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (33 loc) · 845 Bytes
/
Cargo.toml
File metadata and controls
39 lines (33 loc) · 845 Bytes
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
[package]
name = "ffmpeg_input"
authors = ["Ivan Kudriavtsev <ivan.a.kudryavtsev@gmail.com>"]
description = "FFMpeg Source Accessor Library"
homepage = "https://github.com/insight-platform/FFmpeg-Input"
repository = "https://github.com/insight-platform/FFmpeg-Input"
readme = "README.md"
keywords = ["FFmpeg", "Video"]
categories = ["computer-vision"]
version = "0.2.2"
edition = "2021"
license = "Apache-2.0"
rust-version = "1.62"
[lib]
crate-type = ["cdylib", "lib"]
[dependencies]
anyhow = "1.0"
derive_builder = "0.20"
crossbeam = "0.8"
log = "0.4"
env_logger = "0.11"
parking_lot = "0.12"
[dependencies.ffmpeg-next]
version = "7"
features = ["default"]
[dependencies.pyo3]
version = "0.22"
features = ["extension-module"]
[build-dependencies]
pyo3-build-config = { version = "0.22" }
[profile.release]
opt-level = 3
codegen-units = 1