-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathCargo.toml
More file actions
72 lines (61 loc) · 1.67 KB
/
Cargo.toml
File metadata and controls
72 lines (61 loc) · 1.67 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
68
69
70
71
72
[workspace]
members = [
"tree-sitter-ggsql",
"src",
"ggsql-jupyter",
"ggsql-python"
]
# ggsql-python is excluded from default builds because it's a PyO3 extension
# that requires Python dev headers. Build it separately with maturin.
default-members = [
"tree-sitter-ggsql",
"src",
"ggsql-jupyter"
]
resolver = "2"
[workspace.package]
version = "0.1.0"
edition = "2021"
authors = ["ggsql Team"]
license = "MIT"
repository = "https://github.com/georgestagg/ggsql"
homepage = "https://github.com/georgestagg/ggsql"
description = "SQL extension for declarative data visualization"
[workspace.dependencies]
# Parsing
tree-sitter = "0.25"
csscolorparser = "0.8.1"
# Data processing
polars = { version = "0.52", features = ["lazy", "sql", "ipc"] }
polars-ops = { version = "0.52", features = ["pivot"] }
# Readers
duckdb = { version = "1.4", features = ["bundled", "vtab-arrow"] }
arrow = { version = "56", default-features = false, features = ["ipc"] }
postgres = "0.19"
sqlx = { version = "0.8", features = ["postgres", "runtime-tokio-rustls"] }
rusqlite = "0.32"
# Writers
plotters = "0.3"
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# CLI
clap = { version = "4.4", features = ["derive"] }
anyhow = "1.0"
thiserror = "1.0"
# Python bindings
pyo3 = "0.26"
# Testing
proptest = "1.4"
# Utilities
regex = "1.10"
chrono = "0.4"
const_format = "0.2"
uuid = { version = "1.0", features = ["v4"] }
# Web server
axum = "0.7"
tokio = { version = "1.35", features = ["full"] }
tower = "0.5"
tower-http = { version = "0.5", features = ["cors", "trace"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }