-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
53 lines (51 loc) · 1.28 KB
/
Cargo.toml
File metadata and controls
53 lines (51 loc) · 1.28 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
[package]
name = "crabwalk"
version = "0.1.0"
edition = "2021"
description = "A SQL transformation orchestrator written in Rust"
authors = ["Crabwalk Contributors"]
license = "MIT"
default-run = "crabwalk"
[dependencies]
# Command line argument parsing
clap = { version = "4.4", features = ["derive"] }
# DuckDB integration
duckdb = { version = "1.2.0", features = ["bundled"] }
# SQL parsing and manipulation
sqlparser = "0.49.0"
# File system operations
walkdir = "2.4"
# Error handling
anyhow = "1.0"
thiserror = "1.0"
# Serialization/deserialization
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.9"
serde_json = "1.0"
base64 = "0.21"
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# Async runtime
tokio = { version = "1.32", features = ["full"] }
# Regular expressions
regex = "1.9"
# Path handling
pathdiff = "0.2"
# Graph algorithms
petgraph = "0.6"
# Terminal UI
crossterm = "0.27"
console = "0.15"
# Temporary files
tempfile = "3.10"
# AWS S3 integration (optional)
rusoto_core = { version = "0.48", optional = true }
rusoto_s3 = { version = "0.48", optional = true }
# System bindings for handling error output
libc = "0.2"
# Compression for Mermaid diagrams
flate2 = "1.0"
[features]
default = []
s3 = ["rusoto_core", "rusoto_s3"]