forked from Mooncake-Labs/pg_mooncake
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (31 loc) · 791 Bytes
/
Cargo.toml
File metadata and controls
36 lines (31 loc) · 791 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
[package]
name = "pg_mooncake"
version = "0.2.0"
edition = "2021"
[lib]
crate-type = ["cdylib", "lib"]
[[bin]]
name = "pgrx_embed_pg_mooncake"
path = "./src/bin/pgrx_embed.rs"
[features]
default = ["bgworker", "pg18"]
bgworker = ["moonlink_service"]
pg14 = ["pgrx/pg14"]
pg15 = ["pgrx/pg15"]
pg16 = ["pgrx/pg16"]
pg17 = ["pgrx/pg17"]
pg18 = ["pgrx/pg18"]
[dependencies]
bincode = "2"
moonlink_rpc.path = "ivy_moonlink/src/moonlink_rpc"
moonlink_service = { path = "ivy_moonlink/src/moonlink_service", optional = true }
native-tls = "0.2"
pgrx = "0.16.1"
postgres.git = "https://github.com/Mooncake-Labs/rust-postgres.git"
postgres-native-tls.git = "https://github.com/Mooncake-Labs/rust-postgres.git"
regex = "1"
tokio = "1.48"
[profile.release]
codegen-units = 1
debug = 1
lto = "fat"