[package] name = "cargo-pgx" version = "0.7.4" authors = ["ZomboDB, LLC "] license = "MIT" description = "Cargo subcommand for 'pgx' to make Postgres extension development easy" homepage = "https://github.com/tcdi/pgx" repository = "https://github.com/tcdi/pgx" documentation = "https://docs.rs/cargo-pgx" categories = ["development-tools::cargo-plugins", "command-line-utilities", "database"] keywords = ["database", "postgres", "postgresql", "extension"] readme = "README.md" exclude = [ "*.png" ] edition = "2021" [dependencies] atty = "0.2.14" cargo_metadata = "0.15.3" cargo_toml = "0.15.2" clap = { version = "4.1.8", features = [ "env", "suggestions", "cargo", "derive", "wrap_help" ] } clap-cargo = { version = "0.10.0", features = [ "cargo_metadata" ] } semver = "1.0.17" owo-colors = { version = "3.5.0", features = [ "supports-colors" ] } env_proxy = "0.4.1" num_cpus = "1.15.0" pgx-pg-config = { path = "../pgx-pg-config", version = "=0.7.4" } pgx-sql-entity-graph = { path = "../pgx-sql-entity-graph", version = "=0.7.4" } prettyplease = "0.1.24" proc-macro2 = { version = "1.0.52", features = [ "span-locations" ] } quote = "1.0.26" rayon = "1.7.0" regex = "1.7.1" ureq = "2.6.2" url = "2.3.1" serde = { version = "1.0.156", features = [ "derive" ] } serde_derive = "1.0.156" serde-xml-rs = "0.6.0" syn = { version = "1.0.109", features = [ "extra-traits", "full", "fold", "parsing" ] } unescape = "0.1.0" fork = "0.1.21" libloading = "0.7.4" object = "0.30.3" once_cell = "1.17.1" eyre = "0.6.8" color-eyre = "0.6.2" tracing = "0.1.37" tracing-error = "0.2.0" tracing-subscriber = { version = "0.3.16", features = [ "env-filter" ] } flate2 = { version = "1.0.25", default-features = false, features = ["rust_backend"] } tar = { version = "0.4.38", default-features = false } tempfile = "3.4.0" nix = { version = "0.26", default-features = false, features = ["user"] } [features] default = ["ureq/native-tls"] rustls = ["ureq/tls"]