forked from pgcentralfoundation/pgrx
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
89 lines (79 loc) · 2.73 KB
/
Cargo.toml
File metadata and controls
89 lines (79 loc) · 2.73 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
#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. <contact@pgcentral.org>
#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.
[package]
name = "cargo-pgrx"
version = "0.17.0"
authors.workspace = true
license.workspace = true
description = "Cargo subcommand for 'pgrx' to make Postgres extension development easy"
homepage.workspace = true
repository.workspace = true
documentation = "https://docs.rs/cargo-pgrx"
categories = ["development-tools::cargo-plugins", "command-line-utilities", "database"]
keywords = ["database", "postgres", "postgresql", "extension"]
readme = "README.md"
exclude = ["*.png"]
edition.workspace = true
[dependencies]
pgrx-pg-config.workspace = true
pgrx-sql-entity-graph.workspace = true
cargo_metadata.workspace = true
cargo-edit.workspace = true
cargo_toml.workspace = true
clap-cargo.workspace = true
libc.workspace = true
regex.workspace = true
toml.workspace = true
toml_edit.workspace = true
clap = { version = "4.4.2", features = ["env", "suggestions", "cargo", "derive", "wrap_help"] }
jobslot = "0.2.20" # as seen in gmake -j{N}
semver = "1.0.26" # checking pgrx versions match
tempfile = "3.19.1"
# emit better diagnostics
color-eyre = "0.6.5"
eyre.workspace = true
owo-colors.workspace = true
tracing = "0.1"
tracing-error = "0.2.1"
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
# for downloading/unpacking things from the Postgres file servers
bzip2 = "0.5.2"
env_proxy = "0.4.1"
serde.workspace = true
serde_json.workspace = true
serde-xml-rs = "0.6.0"
tar = "0.4.44"
ureq = { version = "3.0.10", default-features = false, features = ["gzip", "platform-verifier", "rustls"] }
url.workspace = true
which = "7.0.3"
zip-extract = "0.2.2"
postgres = { version = "0.19.10", features = ["with-serde_json-1", "with-uuid-1"] }
uuid = { version = "1.16.0", features = ["v4"] }
# SQL schema generation
proc-macro2.workspace = true
quote.workspace = true
[dependencies.object]
version = "0.36.7"
default-features = false
features = [
"read_core", "std", # we use object read-only and like having actual errors
"coff", "elf", "macho", "pe", "xcoff", # support all object formats to allow cross-builds
]
[features]
default = ["rustls"]
native-tls = ["ureq/native-tls", "ureq/platform-verifier"]
rustls = [
"ureq/rustls",
"ureq/native-tls", # induces rustls to use the OS-level root of trust
"ureq/platform-verifier" # use platform certificate store for validation
]
[lints.clippy]
or-fun-call = "allow" # kinda sus lint imo
too_many_arguments = "allow"