diff options
author | Teddy Wing | 2018-11-10 13:58:03 +0100 |
---|---|---|
committer | Teddy Wing | 2018-11-10 13:58:32 +0100 |
commit | d87ed40cd99f6c7dae019cc13b0a16db65d847e5 (patch) | |
tree | d43ba5ed3f299af14fcac1449f67c55f10d208c2 /license-generator/src/lib.rs | |
parent | db2c7627cb758f659111cd03d5f9984adca0b433 (diff) | |
download | dome-key-web-d87ed40cd99f6c7dae019cc13b0a16db65d847e5.tar.bz2 |
Parse POST params to a `BTreeMap`
We want a dictionary to be able to remove the Paddle `p_signature` entry.
Diffstat (limited to 'license-generator/src/lib.rs')
-rw-r--r-- | license-generator/src/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/license-generator/src/lib.rs b/license-generator/src/lib.rs index 8061142..64d96e9 100644 --- a/license-generator/src/lib.rs +++ b/license-generator/src/lib.rs @@ -4,8 +4,10 @@ extern crate log; extern crate mysql; extern crate rand; extern crate sha1; +extern crate url; pub mod database; pub mod errors; +pub mod params; pub mod purchaser; |