-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathCargo.toml
More file actions
89 lines (75 loc) · 2.21 KB
/
Copy pathCargo.toml
File metadata and controls
89 lines (75 loc) · 2.21 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
[workspace]
members = [
"tree-sitter-ggsql",
"src",
"ggsql-cli",
"ggsql-jupyter",
"ggsql-wasm"
]
default-members = [
"tree-sitter-ggsql",
"src",
"ggsql-cli",
"ggsql-jupyter"
]
resolver = "2"
[workspace.package]
version = "0.4.1"
edition = "2021"
# Pinned to CRAN's maximum supported Rust version for the R bindings. Only bump
# this when CRAN does. Setting it here also turns on clippy's `incompatible_msrv`
# lint, which catches accidental use of std APIs newer than this version.
rust-version = "1.86"
authors = ["ggsql Team"]
license = "MIT"
repository = "https://github.com/posit-dev/ggsql"
homepage = "https://ggsql.org"
description = "A declarative visualization language that extends SQL with powerful data visualization capabilities."
[workspace.dependencies]
# workspace packages
tree-sitter-ggsql = { path = "tree-sitter-ggsql", version = "0.4.1" }
ggsql = { path = "src", version = "0.4.1" }
# Parsing
csscolorparser = "0.8.1"
tree-sitter = "0.26"
# Data container
arrow = { version = "58", default-features = false }
# Readers
duckdb = { version = "~1.10502", features = ["bundled", "vtab-arrow"] }
parquet = { version = "58", default-features = false, features = ["arrow", "snap"] }
bytes = "1"
rusqlite = { version = "0.38", features = ["bundled", "chrono", "load_extension"] }
# ODBC
toml_edit = "0.22"
libloading = "0.8"
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# CLI
clap = { version = "4.4", features = ["derive"] }
anyhow = "1.0"
thiserror = "1.0"
# Color interpolation
palette = { version = "0.7", default-features = false, features = ["std", "approx"] }
# Spatial
geozero = { version = "0.14", default-features = false }
# Utilities
regex = "1.10"
chrono = "0.4"
rand = "0.8"
const_format = "0.2"
uuid = { version = "1.0", features = ["v4"] }
tokio = { version = "1.35", default-features = false }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
strip = true
[profile.wasm]
inherits = "release"
opt-level = "z"
panic = "abort"
[patch.crates-io]
sqlite-wasm-rs = { git = "https://github.com/ggsql-dev/sqlite-wasm-rs.git", branch = "loadable-extensions" }