- Updated stablediffusion crate path from "../stable-diffusion-burn" to "./crates/stable-diffusion-burn" for proper workspace resolution - Enhanced .gitignore to include generated model files (.mpk, .pt, .bin, .safetensors, .ckpt) and user_data directory - Added Cargo.lock to gitignore with appropriate comment - Reorganized IDE files section in gitignore for better clarity - Added newline at end of file for proper formatting
49 lines
1.5 KiB
TOML
49 lines
1.5 KiB
TOML
[package]
|
|
authors = [
|
|
"laggui <lagrange.guillaume.1@gmail.com>",
|
|
"nathanielsimard <nathaniel.simard.42@gmail.com>",
|
|
]
|
|
categories = ["science"]
|
|
description = "Multi-backend router decorator for the Burn framework"
|
|
edition.workspace = true
|
|
keywords = ["deep-learning", "machine-learning", "data"]
|
|
license.workspace = true
|
|
name = "burn-router"
|
|
readme.workspace = true
|
|
repository = "https://github.com/tracel-ai/burn/tree/main/crates/burn-router"
|
|
documentation = "https://docs.rs/burn-router"
|
|
version.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = ["burn-backend/std", "burn-std/std", "burn-ir/std"]
|
|
doc = ["default"]
|
|
tracing = [
|
|
"burn-backend/tracing",
|
|
"burn-ir/tracing",
|
|
"burn-std/tracing",
|
|
]
|
|
|
|
[dependencies]
|
|
burn-ir = { path = "../burn-ir", version = "=0.21.0-pre.2", default-features = false }
|
|
burn-backend = { path = "../burn-backend", version = "=0.21.0-pre.2", default-features = false }
|
|
burn-std = { path = "../burn-std", version = "=0.21.0-pre.2", default-features = false }
|
|
hashbrown = { workspace = true }
|
|
spin = { workspace = true }
|
|
log = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
burn-tensor = { path = "../burn-tensor", version = "=0.21.0-pre.2", default-features = false }
|
|
burn-ndarray = { path = "../burn-ndarray", version = "=0.21.0-pre.2" }
|
|
burn-wgpu = { path = "../burn-wgpu", version = "=0.21.0-pre.2", default-features = false, features = [
|
|
"std",
|
|
] }
|
|
|
|
|
|
[package.metadata.docs.rs]
|
|
features = ["doc"]
|
|
rustdoc-args = ["--cfg", "docsrs"]
|