diff options
author | Vincent Ambo <mail@tazj.in> | 2018-10-05T21·37+0200 |
---|---|---|
committer | Vincent Ambo <github@tazj.in> | 2018-10-05T21·58+0200 |
commit | 86c25cc2264b67678b39046b74932e9237b03bf7 (patch) | |
tree | 64f6bba33a2de570a2b00e6ac8127267199c903a /default.nix | |
parent | a4084bf1e0ffc1f6f417974de8c6f93d461a5135 (diff) |
refactor: Replace reqwest library with ureq
This replaces reqwest with the more simplistic ureq library for performing required HTTP requests. Reqwest comes with a lot of (tokio-based) machinery for high-performance requesting that is a bit out of scope for journaldriver's needs. This clocks in at 62 (!) fewer dependencies after the change, with equivalent functionality. Wew.
Diffstat (limited to 'default.nix')
-rw-r--r-- | default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/default.nix b/default.nix index 168739a7ef00..6efed05c964f 100644 --- a/default.nix +++ b/default.nix @@ -11,7 +11,7 @@ with pkgs; rustPlatform.buildRustPackage { name = "journaldriver"; version = "1.0.0"; - cargoSha256 = "04llhriwsrjqnkbjgd22nhci6zmhadclnd8r2bw5092gwdamf49k"; + cargoSha256 = "03rq96hzv97wh2gbzi8sz796bqgh6pbpvdn0zy6zgq2f2sgkavsl"; src = ./.; |