[package]
edition = "2024"
rust-version = "1.93.0"
name = "ff-render"
version = "0.18.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "GPU compositing pipeline for real-time preview (wgpu-based)"
readme = "README.md"
keywords = [
"video",
"gpu",
"wgpu",
"compositing",
"rendering",
]
categories = [
"multimedia::video",
"rendering",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/itsakeyfut/avio"
resolver = "2"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
default = []
display = [
"wgpu",
"ff-preview/display",
]
wgpu = [
"dep:wgpu",
"dep:futures",
]
[lib]
name = "ff_render"
path = "src/lib.rs"
[[test]]
name = "gpu_nodes"
path = "tests/gpu_nodes.rs"
required-features = ["wgpu"]
[[test]]
name = "mask_node_allocation"
path = "tests/mask_node_allocation.rs"
[[test]]
name = "render_graph_tests"
path = "tests/render_graph_tests.rs"
[dependencies.ff-format]
version = "0.18.0"
[dependencies.ff-preview]
version = "0.18.0"
[dependencies.futures]
version = "0.3.32"
optional = true
[dependencies.image]
version = "0.25.9"
default-features = false
[dependencies.log]
version = "0.4.29"
[dependencies.thiserror]
version = "2.0.17"
[dependencies.wgpu]
version = "30.0.0"
optional = true
[dev-dependencies.futures]
version = "0.3.32"
[lints.clippy]
expect_used = "warn"
if_not_else = "allow"
match_same_arms = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
panic = "warn"
redundant_closure_for_method_calls = "allow"
similar_names = "allow"
too_many_lines = "allow"
uninlined_format_args = "allow"
unwrap_used = "warn"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "warn"
[lints.rust.rust_2024_compatibility]
level = "warn"
priority = -1