-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (34 loc) · 1.1 KB
/
Cargo.toml
File metadata and controls
41 lines (34 loc) · 1.1 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
[package]
name = "open-model"
version = "0.1.0"
edition = "2021"
description = "Comprehensive data capture and relational database for OpenRouter AI models"
license = "MIT"
repository = "https://github.com/[username]/Open-Model"
keywords = ["openrouter", "ai", "models", "database", "data"]
categories = ["database", "api-bindings"]
[dependencies]
# HTTP Client & Async Runtime
reqwest = { version = "0.12", features = ["json"] }
tokio = { version = "1.0", features = ["full"] }
# Database & Storage
sqlx = { version = "0.7", features = ["runtime-tokio-rustls", "postgres", "chrono", "uuid", "json"] }
# Serialization & Data Processing
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
uuid = { version = "1.0", features = ["v4", "serde"] }
chrono = { version = "0.4", features = ["serde"] }
# Error Handling & Utilities
anyhow = "1.0"
thiserror = "1.0"
tracing = "0.1"
tracing-subscriber = "0.3"
# Text Processing for capability extraction
regex = "1.9"
sha2 = "0.10"
hex = "0.4"
# Data Export
csv = "1.3"
# Configuration & Environment
dotenvy = "0.15"
clap = { version = "4.4", features = ["derive"] }