Upload Cargo.toml with huggingface_hub
Browse files- Cargo.toml +19 -0
Cargo.toml
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[package]
|
| 2 |
+
name = "turbo_crawl"
|
| 3 |
+
version = "1.0.0"
|
| 4 |
+
edition = "2021"
|
| 5 |
+
|
| 6 |
+
[dependencies]
|
| 7 |
+
tokio = { version = "1", features = ["full"] }
|
| 8 |
+
reqwest = { version = "0.11", features = ["gzip", "brotli", "deflate"] }
|
| 9 |
+
scraper = "0.18"
|
| 10 |
+
url = "2"
|
| 11 |
+
serde = { version = "1", features = ["derive"] }
|
| 12 |
+
serde_json = "1"
|
| 13 |
+
|
| 14 |
+
[profile.release]
|
| 15 |
+
opt-level = 3
|
| 16 |
+
lto = "fat"
|
| 17 |
+
codegen-units = 1
|
| 18 |
+
panic = "abort"
|
| 19 |
+
strip = true
|