alamin655 commited on
Commit
7af48ba
β€’
2 Parent(s): 58bc578 f3aedb1

Merge pull request #177 from neon-mmd/readme-revision

Browse files

πŸ“œ Revise the `docs` to remain in sync with the current changes

Files changed (4) hide show
  1. Cargo.lock +5 -5
  2. Cargo.toml +1 -1
  3. docs/configuration.md +1 -0
  4. docs/installation.md +1 -0
Cargo.lock CHANGED
@@ -2684,18 +2684,18 @@ checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3"
2684
 
2685
  [[package]]
2686
  name = "serde"
2687
- version = "1.0.180"
2688
  source = "registry+https://github.com/rust-lang/crates.io-index"
2689
- checksum = "0ea67f183f058fe88a4e3ec6e2788e003840893b91bac4559cabedd00863b3ed"
2690
  dependencies = [
2691
  "serde_derive",
2692
  ]
2693
 
2694
  [[package]]
2695
  name = "serde_derive"
2696
- version = "1.0.180"
2697
  source = "registry+https://github.com/rust-lang/crates.io-index"
2698
- checksum = "24e744d7782b686ab3b73267ef05697159cc0e5abbed3f47f9933165e5219036"
2699
  dependencies = [
2700
  "proc-macro2 1.0.66",
2701
  "quote 1.0.32",
@@ -3534,7 +3534,7 @@ dependencies = [
3534
 
3535
  [[package]]
3536
  name = "websurfx"
3537
- version = "0.16.2"
3538
  dependencies = [
3539
  "actix-cors",
3540
  "actix-files",
 
2684
 
2685
  [[package]]
2686
  name = "serde"
2687
+ version = "1.0.181"
2688
  source = "registry+https://github.com/rust-lang/crates.io-index"
2689
+ checksum = "6d3e73c93c3240c0bda063c239298e633114c69a888c3e37ca8bb33f343e9890"
2690
  dependencies = [
2691
  "serde_derive",
2692
  ]
2693
 
2694
  [[package]]
2695
  name = "serde_derive"
2696
+ version = "1.0.181"
2697
  source = "registry+https://github.com/rust-lang/crates.io-index"
2698
+ checksum = "be02f6cb0cd3a5ec20bbcfbcbd749f57daddb1a0882dc2e46a6c236c90b977ed"
2699
  dependencies = [
2700
  "proc-macro2 1.0.66",
2701
  "quote 1.0.32",
 
3534
 
3535
  [[package]]
3536
  name = "websurfx"
3537
+ version = "0.16.3"
3538
  dependencies = [
3539
  "actix-cors",
3540
  "actix-files",
Cargo.toml CHANGED
@@ -1,6 +1,6 @@
1
  [package]
2
  name = "websurfx"
3
- version = "0.16.2"
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"
 
1
  [package]
2
  name = "websurfx"
3
+ version = "0.16.3"
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"
docs/configuration.md CHANGED
@@ -23,6 +23,7 @@ Some of the configuration options provided in the file are stated below. These a
23
 
24
  - **logging:** An option to enable or disable logs.
25
  - **debug:** An option to enable or disable debug mode.
 
26
 
27
  ## Server
28
 
 
23
 
24
  - **logging:** An option to enable or disable logs.
25
  - **debug:** An option to enable or disable debug mode.
26
+ - **threads:** The amount of threads that the app will use to run (the value should be greater than 0).
27
 
28
  ## Server
29
 
docs/installation.md CHANGED
@@ -79,6 +79,7 @@ After that edit the config.lua file located under `websurfx` directory. In the c
79
  -- ### General ###
80
  logging = true -- an option to enable or disable logs.
81
  debug = false -- an option to enable or disable debug mode.
 
82
 
83
  -- ### Server ###
84
  port = "8080" -- port on which server should be launched
 
79
  -- ### General ###
80
  logging = true -- an option to enable or disable logs.
81
  debug = false -- an option to enable or disable debug mode.
82
+ threads = 10 -- the amount of threads that the app will use to run (the value should be greater than 0).
83
 
84
  -- ### Server ###
85
  port = "8080" -- port on which server should be launched