-
Notifications
You must be signed in to change notification settings - Fork 174
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (35 loc) · 867 Bytes
/
Cargo.toml
File metadata and controls
41 lines (35 loc) · 867 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
40
41
[workspace]
resolver = "2"
exclude = ["fuzz"]
members = [
"examples/demo",
"integration/rust",
"pgdog",
"pgdog-config",
"pgdog-macros",
"pgdog-plugin",
"pgdog-postgres-types",
"pgdog-stats",
"pgdog-vector",
"plugins/pgdog-example-plugin", "plugins/pgdog-primary-only-tables",
"scripts/*",
]
[workspace.package]
edition = "2024"
[workspace.dependencies]
pgdog-plugin = { path = "./pgdog-plugin", version = "0.3.0" }
pgdog-config = { path = "./pgdog-config", version = "0.1.0" }
schemars = { version = "1.2.1", features = ["uuid1"] }
serde_json = "1.0"
# [patch.crates-io]
# tokio = { path = "../tokio/tokio" }
# [patch."https://github.com/pgdogdev/pg_query.rs.git"]
# pg_query = { path = "../pg_query.rs" }
[profile.release]
lto = true
codegen-units = 1
[profile.flamegraph]
inherits = "release"
debug = true
lto = false
codegen-units = 16