27 lines
538 B
TOML
27 lines
538 B
TOML
[package]
|
|
authors = [
|
|
"nathanielsimard <nathaniel.simard.42@gmail.com>",
|
|
"Ankitects Pty Ltd",
|
|
]
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
name = "custom-renderer"
|
|
description = "Example of how to render training progress outside of the tui"
|
|
publish = false
|
|
version.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
burn = { workspace = true, features = [
|
|
"autodiff",
|
|
"wgpu",
|
|
"train",
|
|
"dataset",
|
|
"vision",
|
|
] }
|
|
guide = { path = "../guide", default-features = false }
|
|
|
|
log = { workspace = true }
|