# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "rllama" version = "0.3.0" authors = ["Mikko Juola"] description = "Pure Rust implementation of LLaMA-family of models, executable" homepage = "https://github.com/Noeda/rllama" documentation = "https://github.com/Noeda/rllama" readme = "README.md" keywords = [ "llama", "machine-learning", ] categories = ["command-line-utilities"] license = "AGPL-3.0" repository = "https://github.com/Noeda/rllama" [profile.release] debug = true [lib] path = "src/lib.rs" [[bin]] name = "rllama" path = "src/main.rs" [[bench]] name = "benchmark" path = "src/benches/benchmark.rs" harness = false [dependencies.approx] version = "0.5" [dependencies.clap] version = "4.1" features = ["derive"] [dependencies.colored] version = "2" [dependencies.embedded-profiling] version = "0.3" [dependencies.half] version = "2.2" [dependencies.indicatif] version = "0.17" [dependencies.num-complex] version = "0.4" [dependencies.ocl] version = "0.19" optional = true [dependencies.protobuf] version = "3.2" [dependencies.rand] version = "0.8" [dependencies.rayon] version = "1.7" [dependencies.serde] version = "1" features = ["derive"] [dependencies.serde_json] version = "1" [dependencies.thiserror] version = "1.0" [dev-dependencies.criterion] version = "0.4" [build-dependencies.protobuf-codegen] version = "3.2" [build-dependencies.protobuf-parse] version = "3.2" [features] opencl = ["ocl"]