-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
51 lines (44 loc) · 1.44 KB
/
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
44
45
46
47
48
49
50
51
[package]
name = "_convex"
version = "0.1.0"
edition = "2021"
license = "Apache-2.0"
[lib]
name = "_convex"
crate-type = [ "cdylib" ]
[dependencies]
convex = { version = "=0.9.0", default-features = false }
futures = { version = "0.3" }
parking_lot = { version = "0.12" }
pyo3 = { features = [ "abi3", "abi3-py39" ], version = "0.23.3" }
pyo3-async-runtimes = { version = "0.23.0", features = [ "tokio-runtime" ] }
tokio = { features = [ "full" ], version = "1" }
tracing = { version = "0.1" }
tracing-subscriber = { features = [ "env-filter" ], version = "0.3.17" }
[dev-dependencies]
convex = { version = "=0.9.0", default-features = false, features = [ "testing" ] }
tracing-subscriber = { features = [ "env-filter" ], version = "0.3.17" }
[build-dependencies]
pyo3-build-config = { version = "0.23.3" }
[features]
default = [ "native-tls-vendored" ]
native-tls = [ "convex/native-tls" ]
native-tls-vendored = [ "convex/native-tls-vendored" ]
rustls-tls-native-roots = [ "convex/rustls-tls-native-roots" ]
rustls-tls-webpki-roots = [ "convex/rustls-tls-webpki-roots" ]
[lints.rust]
unused_extern_crates = "warn"
[lints.clippy]
await_holding_lock = "warn"
await_holding_refcell_ref = "warn"
large_enum_variant = "allow"
manual_map = "allow"
new_without_default = "allow"
op_ref = "allow"
ptr_arg = "allow"
single_match = "allow"
too_many_arguments = "allow"
type_complexity = "allow"
upper_case_acronyms = "allow"
useless_format = "allow"
useless_vec = "allow"