aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Cargo.toml7
-rw-r--r--src/content.rs2
2 files changed, 8 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 2adeae2..f8a74e7 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -11,3 +11,10 @@ regex = "1"
11urlencoding = "1.0.0" 11urlencoding = "1.0.0"
12clap = "2.32.0" 12clap = "2.32.0"
13lazy_static = "1.0.2" 13lazy_static = "1.0.2"
14
15[profile.dev]
16opt-level = 1
17
18[profile.release]
19opt-level = 3
20
diff --git a/src/content.rs b/src/content.rs
index d767f9c..aa45207 100644
--- a/src/content.rs
+++ b/src/content.rs
@@ -24,7 +24,7 @@ pub fn query_url_gen(title: &str) -> String {
24 url.push_str(&urlencoding::encode(title)); 24 url.push_str(&urlencoding::encode(title));
25 url.push_str("&"); 25 url.push_str("&");
26 url.push_str("redirects=1&"); 26 url.push_str("redirects=1&");
27 url.push_str("pllimit=40&"); 27 url.push_str("pllimit=100&");
28 url.push_str("explaintext=1"); 28 url.push_str("explaintext=1");
29 url 29 url
30} 30}