[package] name = "sqlex" version = "0.1.0" edition = "2021" readme = "README.md" license = "MIT" repository = "https://github.com/auser/sqlex" description = "A tool to extract tables from a sql dump and run sql queries on them" homepage = "https://github.com/auser/sqlex" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] anyhow = "1.0.86" clap = { version = "4.5.7", features = ["derive"] } serde = { version = "1.0.203", features = ["derive"] } serde_json = "1.0.118" sql-parse = "0.20.0" # The profile that 'cargo dist' will build with [profile.dist] inherits = "release" lto = "thin" # Config for 'cargo dist' [workspace.metadata.dist] # The preferred cargo-dist version to use in CI (Cargo.toml SemVer syntax) cargo-dist-version = "0.17.0" # CI backends to support ci = "github" # The installers to generate for each app installers = ["shell", "npm", "homebrew"] # A GitHub repo to push Homebrew formulas to tap = "ynqa/homebrew-tap" # Target platforms to build apps for (Rust target-triple syntax) targets = ["aarch64-apple-darwin", "x86_64-apple-darwin", "x86_64-unknown-linux-gnu", "x86_64-pc-windows-msvc"] # Publish jobs to run in CI publish-jobs = ["homebrew"] # Publish jobs to run in CI pr-run-mode = "plan" # The archive format to use for windows builds (defaults .zip) windows-archive = ".tar.gz" # The archive format to use for non-windows builds (defaults .tar.xz) unix-archive = ".tar.gz" # A namespace to use when publishing this package to the npm registry npm-scope = "@auser" # Whether to install an updater program install-updater = true