[package]
edition = "2021"
rust-version = "1.85"
name = "gloss-utils"
version = "0.9.0"
authors = [
"Radu Alexandru Rosu <alex@meshcapade.com>",
"Aman Shenoy <aman@meshcapade.com>",
]
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Small library for utility functions in gloss"
documentation = "https://docs.rs/gloss-utils"
readme = "README.md"
license = "MIT"
repository = "https://github.com/Meshcapade/gloss"
[features]
burn-torch = ["burn/burn-tch"]
default = []
log_with_time = []
[lib]
name = "gloss_utils"
path = "src/lib.rs"
[dependencies.burn]
version = "0.18"
features = [
"wgpu",
"candle",
"autotune",
]
default-features = false
[dependencies.bytemuck]
version = "1.12"
features = ["derive"]
[dependencies.config]
version = "0.14.0"
features = ["toml"]
default-features = false
[dependencies.env_logger]
version = "0.10"
[dependencies.log]
version = "0.4"
features = ["std"]
[dependencies.nalgebra]
version = "0.32"
features = [
"std",
"serde-serialize-no-std",
]
default-features = false
[dependencies.ndarray]
version = "0.15"
[dependencies.num-traits]
version = "0.2"
default-features = false
[dependencies.re_memory]
version = "0.24"
[dependencies.smallvec]
version = "1.11"
[dependencies.strum]
version = "0.26.3"
[dependencies.strum_macros]
version = "0.26.3"
[dependencies.toml]
version = "0.8"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.abi_stable]
version = "0.11.3"
[target.'cfg(target_arch = "wasm32")'.dependencies.console_error_panic_hook]
version = "0.1.6"
[target.'cfg(target_arch = "wasm32")'.dependencies.console_log]
version = "1.0"
[target.'cfg(target_arch = "wasm32")'.dependencies.js-sys]
version = "0.3"
[target.'cfg(target_arch = "wasm32")'.dependencies.wasm-bindgen]
version = "=0.2.100"
[target.'cfg(target_arch = "wasm32")'.dependencies.wasm-bindgen-futures]
version = "0.4"
[target.'cfg(target_arch = "wasm32")'.dependencies.web-sys]
version = "0.3"
features = [
"Request",
"RequestInit",
"RequestMode",
"Response",
"Document",
"Window",
"Element",
]
[lints.clippy]
explicit_iter_loop = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
unused_self = "allow"
[lints.clippy.all]
level = "deny"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1