22 lines
456 B
TOML
22 lines
456 B
TOML
[package]
|
|
authors = ["nathanielsimard <nathaniel.simard.42@gmail.com>"]
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
name = "server"
|
|
publish = false
|
|
version.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[features]
|
|
default = ["webgpu"]
|
|
cuda = ["burn/cuda"]
|
|
webgpu = ["burn/webgpu"]
|
|
vulkan = ["burn/vulkan"]
|
|
rocm = ["burn/rocm"]
|
|
flex = ["burn/flex"]
|
|
|
|
[dependencies]
|
|
burn = { workspace = true, features = ["default", "remote-server", "remote-websocket"] }
|