OpenTransformer commited on
Commit
c9e195a
·
verified ·
1 Parent(s): a205659

Upload source/rust_crawler/Cargo.toml with huggingface_hub

Browse files
Files changed (1) hide show
  1. source/rust_crawler/Cargo.toml +30 -0
source/rust_crawler/Cargo.toml ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [package]
2
+ name = "crawl_rust"
3
+ version = "1.0.0"
4
+ edition = "2021"
5
+
6
+ [[bin]]
7
+ name = "crawl_rust"
8
+ path = "src/main.rs"
9
+
10
+ [dependencies]
11
+ tokio = { version = "1", features = ["full"] }
12
+ reqwest = { version = "0.12", features = ["gzip", "deflate", "brotli", "json"] }
13
+ scraper = "0.22"
14
+ serde = { version = "1", features = ["derive"] }
15
+ serde_json = "1"
16
+ flate2 = "1"
17
+ md-5 = "0.10"
18
+ regex = "1"
19
+ rand = "0.8"
20
+ url = "2"
21
+ urlencoding = "2"
22
+ dashmap = "6"
23
+ bytes = "1"
24
+ lazy_static = "1"
25
+ chrono = "0.4"
26
+
27
+ [profile.release]
28
+ opt-level = 3
29
+ lto = "thin"
30
+ codegen-units = 4