indexer: Remove openssl + replace siphash with sha1 in cache filename
HTTPS isn't used, so removing it saves some space. The std SipHash API has been deprecated, and since hashing performance isn't exactly critical in this case I've replaced it with SHA1, which was already being used in man.rs.
This commit is contained in:
parent
defaa032f8
commit
b9764fce4a
3 changed files with 8 additions and 119 deletions
|
|
@ -14,6 +14,6 @@ encoding = { git = "https://github.com/lifthrasiir/rust-encoding", features = ["
|
|||
ring = "0.5.3"
|
||||
postgres = { git = "https://github.com/sfackler/rust-postgres" }
|
||||
clap = "2.16.3"
|
||||
hyper = "0.9.11"
|
||||
hyper = { version = "0.9.11", default-features = false }
|
||||
url = "1.2.3"
|
||||
chrono = "0.2.25"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue