-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
67 lines (60 loc) · 1.84 KB
/
Copy pathCargo.toml
File metadata and controls
67 lines (60 loc) · 1.84 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[package]
name = "rapidquery"
version = "0.1.0"
edition = "2021"
description = "RapidQuery is the fastest, full-feature, and easy-to-use Python SQL query builder written in Rust."
readme = "README.md"
license = "GNU GPLv3"
homepage = "https://github.com/awolverp/rapidquery"
repository = "https://github.com/awolverp/rapidquery.git"
authors = ["Ali Pooralijan <awolverp@gmail.com>"]
[lib]
name = "rapidquery"
crate-type = ["cdylib", "rlib"]
[profile.dev]
lto = true
panic = "unwind"
strip = true
[profile.release]
codegen-units = 1
debug = false
incremental = false
lto = true
panic = "unwind"
strip = true
[dependencies]
pyo3 = { version = "0.28", default-features = false, features = ["macros", "extension-module", "chrono", "uuid", "rust_decimal", "generate-import-lib"] }
pgvector = { version = "~0.4", default-features = false }
ipnetwork = { version = "0.20", default-features = false }
mac_address = { version = "1.1", default-features = false }
uuid = { version = "1.18.1", default-features = false, features = ["v4"] }
chrono = { version = "0.4.27", default-features = false, features = ["clock"] }
serde_json = { version = "1", default-features = false, features = ["std"] }
rust_decimal = { version = "1.38.0", default-features = false }
indexmap = { version = "2.12.0", default-features = false, features = ["std"]}
parking_lot = { version = "0.12.4", default-features = false }
[dependencies.sea-query]
version = "0.32.7"
default-features = false
features = [
"backend-mysql",
"backend-postgres",
"backend-sqlite",
"thread-safe",
"with-chrono",
"with-json",
"with-rust_decimal",
"with-uuid",
"with-ipnetwork",
"with-mac_address",
"postgres-array",
"postgres-interval",
"postgres-vector",
"hashable-value"
]
[features]
default = ["optimize"]
optimize = []
[lints.clippy]
dbg_macro = "warn"
print_stdout = "warn"