-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathCargo.toml
43 lines (39 loc) · 914 Bytes
/
Cargo.toml
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
[workspace]
resolver = "2"
members = [
"gel-auth",
"gel-db-protocol",
"gel-derive",
"gel-dsn",
"gel-errors",
"gel-jwt",
"gel-pg-captive",
"gel-pg-protocol",
"gel-protocol",
"gel-stream",
"gel-tokio",
"examples/globals",
"examples/query-error",
"tests"
]
[profile.release]
debug = true
lto = true
[workspace.dependencies]
tokio = { version = "1.44" }
tracing = { version = "0.1" }
pyo3 = { version = "0.23", features = ["extension-module", "serde", "macros"] }
[workspace.package]
rust-version = "1.85" # keep in sync with flake.nix
[workspace.lints.clippy]
useless_format = 'allow'
collapsible_if = 'allow'
derive_partial_eq_without_eq = 'allow'
zero_ptr = 'allow'
manual_strip = 'allow'
new_ret_no_self = 'allow'
type_complexity = 'allow'
vec_init_then_push = 'allow'
while_let_on_iterator = 'allow'
too_many_arguments = 'allow'
clone_on_copy = 'allow'