[package] name = "aleph-alpha-api" version = "0.1.0" edition = "2021" description = "Interact with large language models provided by the Aleph Alpha API in Rust code" license = "MIT" keywords = ["ai", "aleph-alpha", "llm"] repository = "https://github.com/andreaskoepf/aleph-alpha-api-rs" categories = ["api-bindings"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] base64 = "0.21.5" bytes = "1.5.0" image = "0.24.7" reqwest = { version = "0.11.22", features = ["json"] } serde = { version = "1.0.193", features = ["derive"] } thiserror = "1.0.50" tokenizers = "0.15.0" [dev-dependencies] chrono = "0.4.31" clap = { version = "4.4.11", features = ["derive"] } dotenv = "0.15.0" json = "0.12.4" lazy_static = "1.4.0" serde_json = "1.0.108" tokio = { version = "1.34.0", features = ["rt", "macros", "rt-multi-thread"] }