Use a custom parser for commands

The removes the dependency for `nom` as commands are now parsed with
its own tiny parser.
This commit is contained in:
finga 2021-11-17 13:17:15 +01:00
parent 4b9186b10d
commit 4d39488c32
4 changed files with 89 additions and 109 deletions

View file

@ -1,6 +1,6 @@
[package]
name = "webhookey"
version = "0.1.4"
version = "0.1.5"
authors = ["finga <webhookey@onders.org>"]
edition = "2021"
license = "GPL-3.0-or-later"
@ -20,7 +20,6 @@ dirs = "4.0"
anyhow = "1.0"
log = "0.4"
env_logger = "0.9"
nom = "7"
hmac = "0.11"
sha2 = "0.9"
hex = "0.4"