-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
71 lines (58 loc) · 1.64 KB
/
Cargo.toml
File metadata and controls
71 lines (58 loc) · 1.64 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
[package]
name = "gsheet-cli"
version = "0.1.0"
edition = "2021"
authors = ["Dipankar Sarkar <me@dipankar.name>"]
description = "A comprehensive CLI for managing Google Sheets with local DuckDB caching"
license = "MIT"
repository = "https://github.com/dipankar/gsheet-cli"
keywords = ["google-sheets", "cli", "duckdb", "mcp"]
categories = ["command-line-utilities"]
[dependencies]
# Google APIs
google-sheets4 = "7"
google-script1 = "7"
yup-oauth2 = { version = "12", features = ["service-account"] }
hyper = { version = "1", features = ["client", "http1", "http2"] }
hyper-rustls = { version = "0.27", features = ["http1", "http2", "native-tokio"] }
hyper-util = { version = "0.1", features = ["client", "client-legacy", "http1", "http2", "tokio"] }
http-body-util = "0.1"
# Async runtime
tokio = { version = "1", features = ["full"] }
# CLI
clap = { version = "4", features = ["derive", "env", "string"] }
clap_complete = "4"
# Serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = "0.8"
# Error handling
thiserror = "2"
anyhow = "1"
# DuckDB
duckdb = { version = "1.1", features = ["bundled"] }
# Configuration
config = "0.14"
directories = "5"
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# Output formatting
comfy-table = "7"
csv = "1"
# MCP Server (using custom implementation, rmcp SDK API changed significantly)
schemars = "0.8"
async-trait = "0.1"
# Utilities
chrono = { version = "0.4", features = ["serde"] }
url = "2"
regex = "1"
once_cell = "1"
bytes = "1"
[dev-dependencies]
tempfile = "3"
mockall = "0.13"
tokio-test = "0.4"
[[bin]]
name = "gsheet"
path = "src/main.rs"