[package] edition = "2021" name = "pg_rnd_numeric" description = "PostgresQL extension for random numerics and bytes" authors = ["xoria "] version = "1.0.0" license = "MIT" repository = "https://gitlab.com/xoria/revently" categories = ["postgresql", "random", "postgres"] [lib] crate-type = ["cdylib", "rlib"] [features] default = ["pg14"] pg13 = ["pgx/pg13", "pgx-tests/pg13" ] pg14 = ["pgx/pg14", "pgx-tests/pg14" ] pg15 = ["pgx/pg15", "pgx-tests/pg15" ] pg_test = [] [dependencies] pgx = "0.6.1" rand = "0.8.4" [dev-dependencies] pgx-tests = "0.6.1" [profile.dev] panic = "unwind" lto = "thin" [profile.release] panic = "unwind" opt-level = 3 lto = "fat" codegen-units = 1