-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
45 lines (36 loc) · 828 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
44
45
[package]
name = "prqlite"
version = "0.1.0-alpha"
edition = "2021"
default-run = "prqlite"
authors = ["Mohamed Emad (hulxxv@gmail.com)"]
description = "Use Sqlite with PRQL"
readme = "README.md"
[workspace]
members = [
"prqlite-cli",
"prqlite-rs"
]
[dependencies]
anyhow = "1.0.58"
chrono = "0.4.19"
clap = { version = "4.1.6", features = ["derive"] }
comfy-table = "6.0.0"
crossterm = "0.26.0"
derivative = "2.2.0"
env_logger = "0.10.0"
log = "0.4.17"
thiserror = "1.0.31"
tokio = { version = "1.20.1", features = ["full"] }
tui = { version = "0.19.0" }
unicode-width = "0.1.1"
prqlite-cli = {path = "./prqlite-cli"}
rusqlite = {version = "0.29.0", features = ["bundled"]}
[[bin]]
path = "./prqlite-cli/src/main.rs"
name = "prqlite"
[profile.release]
opt-level = 'z'
lto = true
codegen-units = 1
strip = true