aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorAkshay <[email protected]>2020-08-23 13:08:49 +0100
committerAkshay <[email protected]>2020-08-23 13:08:49 +0100
commit99d59ca3be5ce319e43671f63449b36344bb3f84 (patch)
tree79d08eda83aaf489dca86914a9029ea4a98e1fea /Cargo.toml
parent0844fd45b4d77e3f7f1cece76cc232979ad20b8f (diff)
switch to smol rt, fix form urlencoded requests
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml6
1 files changed, 4 insertions, 2 deletions
diff --git a/Cargo.toml b/Cargo.toml
index b180b0d..ca60681 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -8,11 +8,13 @@ edition = "2018"
8 8
9[dependencies] 9[dependencies]
10hyper = "0.13" 10hyper = "0.13"
11tokio = { version = "0.2", features = ["full"] }
12rusqlite = "0.24.0" 11rusqlite = "0.24.0"
13nanoid = "0.3.0" 12nanoid = "0.3.0"
14url = "2.1.1" 13url = "2.1.1"
15anyhow = "1.0" 14anyhow = "1.0"
16futures = "0.3.5"
17multer = "1.2" 15multer = "1.2"
18 16
17
18[dependencies.smol]
19version = "0.3.3"
20features = [ "tokio02" ]