[package] name = "mysql-cli" version = "0.1.0" edition = "2021" description = "A lightweight MySQL command-line tool written in Rust" [dependencies] # MySQL driver mysql = "25" # Command line argument parsing clap = { version = "4", features = ["derive"] } # REPL with history and completion rustyline = { version = "14", features = ["derive"] } # Serialization serde = { version = "1", features = ["derive"] } serde_json = "1" # CSV output csv = "1" # Error handling anyhow = "1" thiserror = "1" # Check if stdin is a tty atty = "0.2" [profile.release] opt-level = "z" lto = true strip = true