28 lines
570 B
TOML
28 lines
570 B
TOML
[package]
|
|
name = "rtx-lora"
|
|
version = "1.0.0"
|
|
edition = "2024"
|
|
description = "LoRA and QLoRA adapter support for RustyTorch++"
|
|
license = "MIT OR Apache-2.0"
|
|
repository = "https://github.com/anthropics/rustytorch"
|
|
keywords = ["machine-learning", "deep-learning", "lora", "qlora", "fine-tuning"]
|
|
categories = ["science", "mathematics"]
|
|
|
|
[dependencies]
|
|
# Core dependencies
|
|
parking_lot = "0.12"
|
|
dashmap = "5.5"
|
|
half = { version = "2.4", features = ["std"] }
|
|
thiserror = "2"
|
|
rayon = "1.10"
|
|
|
|
[dev-dependencies]
|
|
rand = "0.9"
|
|
|
|
[features]
|
|
default = []
|
|
|
|
|
|
[lints]
|
|
workspace = true
|