[package]
edition = "2021"
rust-version = "1.74"
name = "dsfb-computer-graphics"
version = "0.1.0"
build = false
include = [
"src/**",
"tests/**",
"docs/**",
"colab/**",
"examples/**",
"Cargo.toml",
"README.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
default-run = "dsfb-computer-graphics"
description = "Minimal DSFB-for-computer-graphics research artifact for temporal accumulation supervision"
homepage = "https://github.com/infinityabundance/dsfb"
readme = "README.md"
keywords = [
"dsfb",
"graphics",
"taa",
"temporal",
"research",
]
categories = [
"science",
"graphics",
"command-line-utilities",
]
license = "Apache-2.0"
repository = "https://github.com/infinityabundance/dsfb"
[lib]
name = "dsfb_computer_graphics"
path = "src/lib.rs"
[[bin]]
name = "dsfb-computer-graphics"
path = "src/main.rs"
[[test]]
name = "colab_notebook"
path = "tests/colab_notebook.rs"
[[test]]
name = "demo_cli"
path = "tests/demo_cli.rs"
[[test]]
name = "fast_path"
path = "tests/fast_path.rs"
[[test]]
name = "research_artifact"
path = "tests/research_artifact.rs"
[[test]]
name = "unreal_native"
path = "tests/unreal_native.rs"
[dependencies.bytemuck]
version = "1.16"
features = ["derive"]
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.image]
version = "0.24.9"
features = [
"png",
"jpeg",
"exr",
]
default-features = false
[dependencies.pollster]
version = "0.3"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.wgpu]
version = "0.19"
[dev-dependencies.serial_test]
version = "3"