-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (31 loc) · 705 Bytes
/
Cargo.toml
File metadata and controls
39 lines (31 loc) · 705 Bytes
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
[package]
name = "fs_example"
version = "0.0.0"
edition = "2018"
[lib]
crate-type = ["cdylib"]
[features]
default = ["pg13"]
pg10 = ["pgx/pg10", "pgx-tests/pg10" ]
pg11 = ["pgx/pg11", "pgx-tests/pg11" ]
pg12 = ["pgx/pg12", "pgx-tests/pg12" ]
pg13 = ["pgx/pg13", "pgx-tests/pg13" ]
pg_test = []
[dependencies]
pgx = "0.1.6"
pgx-macros = "0.1.6"
[dependencies.flat_serialize]
git = "https://github.com/JLockerman/flat_serialize"
rev = "7f060ef"
[dependencies.flat_serialize_macro]
git = "https://github.com/JLockerman/flat_serialize"
rev = "7f060ef"
[dev-dependencies]
pgx-tests = "0.1.6"
[profile.dev]
panic = "unwind"
[profile.release]
panic = "unwind"
opt-level = 3
lto = "fat"
codegen-units = 1