OpenTransformer commited on
Commit
9b520b8
·
verified ·
1 Parent(s): 2c84ef0

Upload Cargo.toml with huggingface_hub

Browse files
Files changed (1) hide show
  1. Cargo.toml +14 -0
Cargo.toml ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [package]
2
+ name = "goddess_scraper"
3
+ version = "0.1.0"
4
+ edition = "2021"
5
+
6
+ [dependencies]
7
+ tokio = { version = "1", features = ["full"] }
8
+ reqwest = { version = "0.11", features = ["gzip", "brotli"] }
9
+ futures = "0.3"
10
+ anyhow = "1"
11
+
12
+ [profile.release]
13
+ opt-level = 3
14
+ lto = true