neon_arch commited on
Commit
9fec52f
β€’
1 Parent(s): 88e569b

πŸš€ chore: bump the app version & bump the crates version (#203)

Browse files
Files changed (2) hide show
  1. Cargo.lock +9 -9
  2. Cargo.toml +4 -4
Cargo.lock CHANGED
@@ -1287,9 +1287,9 @@ checksum = "eabb4a44450da02c90444cf74558da904edde8fb4e9035a9a6a4e15445af0bd7"
1287
 
1288
  [[package]]
1289
  name = "handlebars"
1290
- version = "4.3.7"
1291
  source = "registry+https://github.com/rust-lang/crates.io-index"
1292
- checksum = "83c3372087601b532857d332f5957cbae686da52bb7810bf038c3e3c3cc2fa0d"
1293
  dependencies = [
1294
  "log",
1295
  "pest",
@@ -2500,9 +2500,9 @@ dependencies = [
2500
 
2501
  [[package]]
2502
  name = "redis"
2503
- version = "0.23.2"
2504
  source = "registry+https://github.com/rust-lang/crates.io-index"
2505
- checksum = "ffd6543a7bc6428396845f6854ccf3d1ae8823816592e2cbe74f20f50f209d02"
2506
  dependencies = [
2507
  "combine",
2508
  "itoa 1.0.9",
@@ -2530,9 +2530,9 @@ dependencies = [
2530
 
2531
  [[package]]
2532
  name = "regex"
2533
- version = "1.9.4"
2534
  source = "registry+https://github.com/rust-lang/crates.io-index"
2535
- checksum = "12de2eff854e5fa4b1295edd650e227e9d8fb0c9e90b12e7f36d6a6811791a29"
2536
  dependencies = [
2537
  "aho-corasick",
2538
  "memchr",
@@ -2542,9 +2542,9 @@ dependencies = [
2542
 
2543
  [[package]]
2544
  name = "regex-automata"
2545
- version = "0.3.7"
2546
  source = "registry+https://github.com/rust-lang/crates.io-index"
2547
- checksum = "49530408a136e16e5b486e883fbb6ba058e8e4e8ae6621a77b048b314336e629"
2548
  dependencies = [
2549
  "aho-corasick",
2550
  "memchr",
@@ -3682,7 +3682,7 @@ dependencies = [
3682
 
3683
  [[package]]
3684
  name = "websurfx"
3685
- version = "0.18.6"
3686
  dependencies = [
3687
  "actix-cors",
3688
  "actix-files",
 
1287
 
1288
  [[package]]
1289
  name = "handlebars"
1290
+ version = "4.4.0"
1291
  source = "registry+https://github.com/rust-lang/crates.io-index"
1292
+ checksum = "c39b3bc2a8f715298032cf5087e58573809374b08160aa7d750582bdb82d2683"
1293
  dependencies = [
1294
  "log",
1295
  "pest",
 
2500
 
2501
  [[package]]
2502
  name = "redis"
2503
+ version = "0.23.3"
2504
  source = "registry+https://github.com/rust-lang/crates.io-index"
2505
+ checksum = "4f49cdc0bb3f412bf8e7d1bd90fe1d9eb10bc5c399ba90973c14662a27b3f8ba"
2506
  dependencies = [
2507
  "combine",
2508
  "itoa 1.0.9",
 
2530
 
2531
  [[package]]
2532
  name = "regex"
2533
+ version = "1.9.5"
2534
  source = "registry+https://github.com/rust-lang/crates.io-index"
2535
+ checksum = "697061221ea1b4a94a624f67d0ae2bfe4e22b8a17b6a192afb11046542cc8c47"
2536
  dependencies = [
2537
  "aho-corasick",
2538
  "memchr",
 
2542
 
2543
  [[package]]
2544
  name = "regex-automata"
2545
+ version = "0.3.8"
2546
  source = "registry+https://github.com/rust-lang/crates.io-index"
2547
+ checksum = "c2f401f4955220693b56f8ec66ee9c78abffd8d1c4f23dc41a23839eb88f0795"
2548
  dependencies = [
2549
  "aho-corasick",
2550
  "memchr",
 
3682
 
3683
  [[package]]
3684
  name = "websurfx"
3685
+ version = "0.20.0"
3686
  dependencies = [
3687
  "actix-cors",
3688
  "actix-files",
Cargo.toml CHANGED
@@ -1,6 +1,6 @@
1
  [package]
2
  name = "websurfx"
3
- version = "0.18.6"
4
  edition = "2021"
5
  description = "An open-source alternative to Searx that provides clean, ad-free, and organic results with incredible speed while keeping privacy and security in mind."
6
  repository = "https://github.com/neon-mmd/websurfx"
@@ -10,7 +10,7 @@ license = "AGPL-3.0"
10
  reqwest = {version="0.11.20",features=["json"]}
11
  tokio = {version="1.32.0",features=["full"]}
12
  serde = {version="1.0.188",features=["derive"]}
13
- handlebars = { version = "4.3.7", features = ["dir_source"] }
14
  scraper = {version="0.17.1"}
15
  actix-web = {version="4.4.0", features = ["cookies"]}
16
  actix-files = {version="0.6.2"}
@@ -21,13 +21,13 @@ fake-useragent = {version="0.1.3"}
21
  env_logger = {version="0.10.0"}
22
  log = {version="0.4.20"}
23
  rlua = {version="0.19.7"}
24
- redis = {version="0.23.2"}
25
  md5 = {version="0.7.0"}
26
  rand={version="0.8.5"}
27
  once_cell = {version="1.18.0"}
28
  error-stack = {version="0.4.0"}
29
  async-trait = {version="0.1.73"}
30
- regex = {version="1.9.4", features=["perf"]}
31
 
32
  [dev-dependencies]
33
  rusty-hook = "^0.11.2"
 
1
  [package]
2
  name = "websurfx"
3
+ version = "0.20.0"
4
  edition = "2021"
5
  description = "An open-source alternative to Searx that provides clean, ad-free, and organic results with incredible speed while keeping privacy and security in mind."
6
  repository = "https://github.com/neon-mmd/websurfx"
 
10
  reqwest = {version="0.11.20",features=["json"]}
11
  tokio = {version="1.32.0",features=["full"]}
12
  serde = {version="1.0.188",features=["derive"]}
13
+ handlebars = { version = "4.4.0", features = ["dir_source"] }
14
  scraper = {version="0.17.1"}
15
  actix-web = {version="4.4.0", features = ["cookies"]}
16
  actix-files = {version="0.6.2"}
 
21
  env_logger = {version="0.10.0"}
22
  log = {version="0.4.20"}
23
  rlua = {version="0.19.7"}
24
+ redis = {version="0.23.3"}
25
  md5 = {version="0.7.0"}
26
  rand={version="0.8.5"}
27
  once_cell = {version="1.18.0"}
28
  error-stack = {version="0.4.0"}
29
  async-trait = {version="0.1.73"}
30
+ regex = {version="1.9.5", features=["perf"]}
31
 
32
  [dev-dependencies]
33
  rusty-hook = "^0.11.2"