forked from pgcentralfoundation/pgrx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
53 lines (50 loc) · 1.44 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
#LICENSE Portions Copyright 2019-2021 ZomboDB, LLC.
#LICENSE
#LICENSE Portions Copyright 2021-2023 Technology Concepts & Design, Inc.
#LICENSE
#LICENSE Portions Copyright 2023-2023 PgCentral Foundation, Inc. <[email protected]>
#LICENSE
#LICENSE All rights reserved.
#LICENSE
#LICENSE Use of this source code is governed by the MIT license that can be found in the LICENSE file.
[workspace]
resolver = "2"
members = [
"cargo-pgrx",
"pgrx",
"pgrx-macros",
"pgrx-pg-config",
"pgrx-pg-sys",
"pgrx-sql-entity-graph",
"pgrx-tests",
"pgrx-version-updater",
"pgrx-examples/aggregate",
"pgrx-examples/arrays",
"pgrx-examples/bad_ideas",
"pgrx-examples/bgworker",
"pgrx-examples/bytea",
"pgrx-examples/composite_type",
"pgrx-examples/custom_libname",
"pgrx-examples/custom_types",
"pgrx-examples/custom_sql",
"pgrx-examples/datetime",
"pgrx-examples/errors",
"pgrx-examples/nostd",
"pgrx-examples/numeric",
"pgrx-examples/pgtrybuilder",
"pgrx-examples/operators",
"pgrx-examples/range",
"pgrx-examples/schemas",
"pgrx-examples/shmem",
"pgrx-examples/spi",
"pgrx-examples/srf",
"pgrx-examples/strings",
"pgrx-examples/triggers",
"pgrx-examples/versioned_custom_libname_so",
"pgrx-examples/versioned_so",
"pgrx-examples/spi_srf",
]
[profile.dev.build-override]
opt-level = 3
[workspace.metadata.local-install]
cargo-pgrx = { path = "cargo-pgrx" }