forked from fr3ddy-fryd3/postgrust-sql
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
52 lines (46 loc) · 1.4 KB
/
Copy pathCargo.toml
File metadata and controls
52 lines (46 loc) · 1.4 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
[package]
name = "postgrustql"
version = "2.0.1"
edition = "2024"
license = "MIT"
authors = ["fr3ddy-fryd3 <fr3ddyfryd3@gmail.com>"]
description = "PostgreSQL-compatible database server written in Rust with MVCC, transactions, and full SQL support"
repository = "https://github.com/fr3ddy-fryd3/postgrust-sql"
[dependencies]
tokio = { version = "1.41", features = ["full"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
bincode = "1.3"
nom = "7.1"
thiserror = "2.0"
bytes = "1.9"
comfy-table = "7.1"
rustyline = "14.0"
dirs = "5.0"
sha2 = "0.10"
# New types support
chrono = { version = "0.4", features = ["serde"] }
uuid = { version = "1.6", features = ["serde", "v4"] }
rust_decimal = { version = "1.33", features = ["serde"] }
hex = "0.4"
[dev-dependencies]
tempfile = "3.8"
[features]
default = []
page_storage = []
[profile.release]
strip = true
lto = "fat"
codegen-units = 1
[lints.clippy]
# Самые строгие группы линтов
pedantic = { level = "warn", priority = -1 }
nursery = { level = "warn", priority = -1 }
cargo = { level = "warn", priority = -1 }
# Дополнительные строгие проверки
all = { level = "warn", priority = -1 }
correctness = { level = "deny", priority = 0 }
suspicious = { level = "warn", priority = 0 }
complexity = { level = "warn", priority = 0 }
perf = { level = "warn", priority = 0 }
style = { level = "warn", priority = 0 }