[package]
edition = "2024"
name = "deep-delta-learning"
version = "0.1.1"
authors = ["AbdelStark"]
build = false
exclude = [
".agents/**",
".claude/**",
".codex/**",
".github/**",
"agents.md",
"CLAUDE.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust MVP implementation of Deep Delta Learning on Burn"
homepage = "https://github.com/AbdelStark/ddl-rs"
documentation = "https://docs.rs/deep-delta-learning"
readme = "README.md"
license = "MIT"
repository = "https://github.com/AbdelStark/ddl-rs"
[features]
default = ["spectral"]
spectral = []
tui = [
"dep:ratatui",
"dep:crossterm",
"dep:color-eyre",
]
[lib]
name = "deep_delta_learning"
path = "src/lib.rs"
[[bin]]
name = "ddl"
path = "src/bin/ddl/main.rs"
[[bin]]
name = "ddl-tui"
path = "src/bin/ddl-tui/main.rs"
required-features = ["tui"]
[[example]]
name = "checkpoint_roundtrip"
path = "examples/checkpoint_roundtrip.rs"
[[example]]
name = "compare_models"
path = "examples/compare_models.rs"
[[example]]
name = "generate_tiny"
path = "examples/generate_tiny.rs"
[[example]]
name = "mvp_forward"
path = "examples/mvp_forward.rs"
[[example]]
name = "spectral_report"
path = "examples/spectral_report.rs"
[[example]]
name = "train_tiny"
path = "examples/train_tiny.rs"
[[example]]
name = "training_comparison"
path = "examples/training_comparison.rs"
[[test]]
name = "baseline_tests"
path = "tests/baseline_tests.rs"
[[test]]
name = "benchmark_tests"
path = "tests/benchmark_tests.rs"
[[test]]
name = "checkpoint_tests"
path = "tests/checkpoint_tests.rs"
[[test]]
name = "cli_tests"
path = "tests/cli_tests.rs"
[[test]]
name = "compressor_tests"
path = "tests/compressor_tests.rs"
[[test]]
name = "config_tests"
path = "tests/config_tests.rs"
[[test]]
name = "data_tests"
path = "tests/data_tests.rs"
[[test]]
name = "delta_operator_tests"
path = "tests/delta_operator_tests.rs"
[[test]]
name = "delta_res_block_tests"
path = "tests/delta_res_block_tests.rs"
[[test]]
name = "eval_tests"
path = "tests/eval_tests.rs"
[[test]]
name = "generation_tests"
path = "tests/generation_tests.rs"
[[test]]
name = "lm_tests"
path = "tests/lm_tests.rs"
[[test]]
name = "spectral_tests"
path = "tests/spectral_tests.rs"
[[test]]
name = "training_tests"
path = "tests/training_tests.rs"
[[test]]
name = "transformer_tests"
path = "tests/transformer_tests.rs"
[dependencies.burn]
version = "0.20.1"
features = [
"std",
"ndarray",
"autodiff",
]
default-features = false
[dependencies.color-eyre]
version = "0.6"
optional = true
[dependencies.crossterm]
version = "0.28"
optional = true
[dependencies.ratatui]
version = "0.29"
optional = true
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dev-dependencies.approx]
version = "0.5"