-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (32 loc) · 838 Bytes
/
Copy pathCargo.toml
File metadata and controls
41 lines (32 loc) · 838 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
[package]
name = "sqlx-sqlite-benchmark"
version = "0.1.0"
edition = "2024"
authors = ["Pascal Poredda <pascal@poredda.digital>"]
description = "Comprehensive SQLite benchmarks using SQLX demonstrating edge computing performance"
repository = "https://github.com/pascalporedda/sqlx-sqlite-benchmark"
license = "MIT"
[dependencies]
# Async runtime
tokio = { version = "1.42", features = ["full"] }
# Database
sqlx = { version = "0.8", features = [
"runtime-tokio",
"sqlite",
"macros",
"chrono",
"migrate",
] }
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# CLI and logging
clap = { version = "4.5", features = ["derive"] }
env_logger = "0.11"
log = "0.4"
# Utils
anyhow = "1.0"
chrono = { version = "0.4", features = ["serde"] }
rand = "0.8"
num_cpus = "1.16"
indicatif = "0.17"