forked from pgcentralfoundation/pgrx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
57 lines (53 loc) · 1.64 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[package]
name = "pgx-parent"
version = "0.2.6"
authors = ["ZomboDB, LLC <[email protected]>"]
edition = "2018"
license = "MIT"
description = "Top-level repo for 'pgx' (not on crates.io)"
homepage = "https://github.com/zombodb/pgx/"
repository = "https://github.com/zombodb/pgx/"
[workspace]
members = [
".",
"cargo-pgx",
"pgx",
"pgx-macros",
"pgx-pg-sys",
"pgx-tests",
"pgx-utils",
]
exclude = [
"pgx-examples/aggregate",
"pgx-examples/arrays",
"pgx-examples/bad_ideas",
"pgx-examples/bytea",
"pgx-examples/custom_types",
"pgx-examples/custom_sql",
"pgx-examples/errors",
"pgx-examples/schemas",
"pgx-examples/shmem",
"pgx-examples/spi",
"pgx-examples/srf",
"pgx-examples/strings",
"pgx-examples/triggers",
]
[features]
default = [ ]
pg10 = [ "pgx/pg10", "pgx-pg-sys/pg10", "pgx-tests/pg10" ]
pg11 = [ "pgx/pg11", "pgx-pg-sys/pg11", "pgx-tests/pg11" ]
pg12 = [ "pgx/pg12", "pgx-pg-sys/pg12", "pgx-tests/pg12" ]
pg13 = [ "pgx/pg13", "pgx-pg-sys/pg13", "pgx-tests/pg13" ]
pg14 = [ "pgx/pg14", "pgx-pg-sys/pg14", "pgx-tests/pg14" ]
pg_test = [ "pgx-tests/pg_test" ]
[package.metadata.docs.rs]
features = ["pg14"]
no-default-features = true
# Enable `#[cfg(docsrs)]` (https://docs.rs/about/builds#cross-compiling)
rustc-args = ["--cfg", "docsrs"]
[dependencies]
cargo-pgx = { path = "cargo-pgx", version = "0.2.6" }
pgx = { path = "pgx", version = "0.2.6", default-features = false }
pgx-macros = { path = "pgx-macros", version = "0.2.6" }
pgx-pg-sys = { path = "pgx-pg-sys", version = "0.2.6", default-features = false }
pgx-tests = { path = "pgx-tests", version = "0.2.6", default-features = false }