-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
59 lines (52 loc) · 1.41 KB
/
Copy pathCargo.toml
File metadata and controls
59 lines (52 loc) · 1.41 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
[workspace]
members = ["control-plane"]
resolver = "2"
[package]
name = "openapi_fdw"
version = "0.4.1"
edition = "2024"
rust-version = "1.88"
description = "A native PostgreSQL foreign data wrapper for JSON and OpenAPI services"
license = "WTFPL"
repository = "https://github.com/sabino/openapi_fdw"
publish = false
[lib]
crate-type = ["cdylib", "lib"]
[[bin]]
name = "pgrx_embed_openapi_fdw"
path = "src/bin/pgrx_embed.rs"
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ["cfg(pgrx_embed)"] }
[features]
default = ["pg18"]
pg14 = ["pgrx/pg14", "supabase-wrappers/pg14"]
pg15 = ["pgrx/pg15", "supabase-wrappers/pg15"]
pg16 = ["pgrx/pg16", "supabase-wrappers/pg16"]
pg17 = ["pgrx/pg17", "supabase-wrappers/pg17"]
pg18 = ["pgrx/pg18", "supabase-wrappers/pg18"]
[dependencies]
httpdate = "1.0.3"
percent-encoding = "2.3.2"
pgrx = { version = "=0.16.1", default-features = false }
reqwest = { version = "0.13.4", default-features = false, features = [
"blocking",
"brotli",
"deflate",
"gzip",
"json",
"query",
"rustls",
] }
rustls = "0.23.37"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = { version = "1.0.149", features = ["arbitrary_precision"] }
serde_yaml_ng = "0.10.0"
supabase-wrappers = { version = "=0.1.28", default-features = false }
thiserror = "2.0.18"
url = "2.5.8"
uuid = "1.21.0"
[profile.release]
codegen-units = 1
lto = "fat"
opt-level = 3
panic = "unwind"