-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
59 lines (45 loc) · 1.18 KB
/
Cargo.toml
File metadata and controls
59 lines (45 loc) · 1.18 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
[workspace]
resolver = "2"
members = ["crates/*"]
[workspace.package]
version = "0.2.0"
edition = "2021"
license = "MIT"
authors = ["Everruns"]
repository = "https://github.com/everruns/fetchkit"
description = "AI-friendly web content fetching and HTML-to-Markdown conversion library"
keywords = ["fetch", "web", "markdown", "llm", "ai"]
categories = ["web-programming", "text-processing"]
[workspace.dependencies]
# Async runtime
tokio = { version = "1", features = ["rt-multi-thread", "macros", "time", "sync"] }
# HTTP client
reqwest = { version = "0.13", features = ["gzip", "brotli", "deflate", "stream", "json"] }
# Serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"
# Schema generation
schemars = "1"
# URL parsing
url = "2"
# Logging
tracing = "0.1"
# Error handling
thiserror = "2"
# CLI
clap = { version = "4", features = ["derive"] }
# Async streaming
futures = "0.3"
bytes = "1"
# Testing
wiremock = "0.6"
tempfile = "3"
# Async traits
async-trait = "0.1"
# Service trait
tower = { version = "0.5", features = ["util"] }
# Crypto (bot-auth feature)
ed25519-dalek = { version = "2", features = ["rand_core"] }
base64 = "0.22"
sha2 = "0.10"
rand = "0.8"