[package] name = "kiistor" version = "0.1.10" edition = "2021" authors = ["Tatu Pesonen "] description = "A small utility for loading game keys in/out of a PostgreSQL database" repository = "https://github.com/tatupesonen/kiistor" license-file = "LICENSE" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] clap = { version = "4.5.2", features = ["derive"] } colored = "2.1.0" sqlx = { version = "0.7.3", features = ["runtime-tokio-rustls", "postgres"] } tabled = "0.15.0" tokio = { version = "1.36.0", features = ["rt", "macros", "rt-multi-thread"] } [profile.release] strip = true # Automatically strip symbols from the binary. lto = true