aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorChristine Dodrill <me@christine.website>2021-01-22 21:11:48 -0500
committerGitHub <noreply@github.com>2021-01-22 21:11:48 -0500
commit990cce7267dae9bdd37ef772db2edeef2a39365b (patch)
treedbf370c4af264f662c5acb28ea090876edbcccfd /lib
parent6456d75502d89986f8f05dad7965291fd0e5c933 (diff)
downloadxesite-990cce7267dae9bdd37ef772db2edeef2a39365b.tar.xz
xesite-990cce7267dae9bdd37ef772db2edeef2a39365b.zip
Use Tokio 1 (#306)
* upgrade all the things Signed-off-by: Christine Dodrill <me@christine.website> * build(deps): bump serde from 1.0.118 to 1.0.120 Bumps [serde](https://github.com/serde-rs/serde) from 1.0.118 to 1.0.120. - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.118...v1.0.120) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> * fix Signed-off-by: Christine Dodrill <me@christine.website> Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
Diffstat (limited to 'lib')
-rw-r--r--lib/cfcache/Cargo.toml6
-rw-r--r--lib/go_vanity/Cargo.toml4
-rw-r--r--lib/mi/Cargo.toml4
-rw-r--r--lib/patreon/Cargo.toml4
4 files changed, 9 insertions, 9 deletions
diff --git a/lib/cfcache/Cargo.toml b/lib/cfcache/Cargo.toml
index 85060c2..8ca353d 100644
--- a/lib/cfcache/Cargo.toml
+++ b/lib/cfcache/Cargo.toml
@@ -7,8 +7,8 @@ edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
-reqwest = { version = "0.10", features = ["json"] }
-serde_json = "1.0"
+reqwest = { version = "0.11", features = ["json"] }
+serde_json = "1"
serde = { version = "1", features = ["derive"] }
thiserror = "1"
tracing = "0.1"
@@ -17,4 +17,4 @@ tracing-futures = "0.2"
[dev-dependencies]
eyre = "0.6.5"
kankyo = "0.3"
-tokio = { version = "0.2", features = ["full"] }
+tokio = { version = "1", features = ["full"] }
diff --git a/lib/go_vanity/Cargo.toml b/lib/go_vanity/Cargo.toml
index d753a8a..6aaf748 100644
--- a/lib/go_vanity/Cargo.toml
+++ b/lib/go_vanity/Cargo.toml
@@ -8,8 +8,8 @@ build = "src/build.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
-mime = "0.3.0"
-warp = "0.2"
+mime = "0.3"
+warp = "0.3"
[build-dependencies]
ructe = { version = "0.13", features = ["warp02"] }
diff --git a/lib/mi/Cargo.toml b/lib/mi/Cargo.toml
index 1d0e716..ef4f1a2 100644
--- a/lib/mi/Cargo.toml
+++ b/lib/mi/Cargo.toml
@@ -9,7 +9,7 @@ edition = "2018"
[dependencies]
chrono = { version = "0.4", features = ["serde"] }
color-eyre = "0.5"
-reqwest = { version = "0.10", features = ["json"] }
+reqwest = { version = "0.11", features = ["json"] }
serde_json = "1.0"
serde = { version = "1", features = ["derive"] }
thiserror = "1"
@@ -17,6 +17,6 @@ tracing = "0.1"
tracing-futures = "0.2"
[dev-dependencies]
-tokio = { version = "0.2", features = ["macros"] }
+tokio = { version = "1", features = ["macros"] }
envy = "0.4"
pretty_env_logger = "0"
diff --git a/lib/patreon/Cargo.toml b/lib/patreon/Cargo.toml
index fc204a4..6c3e001 100644
--- a/lib/patreon/Cargo.toml
+++ b/lib/patreon/Cargo.toml
@@ -8,7 +8,7 @@ edition = "2018"
[dependencies]
chrono = { version = "0.4", features = ["serde"] }
-reqwest = { version = "0.10", features = ["json"] }
+reqwest = { version = "0.11", features = ["json"] }
serde_json = "1.0"
serde = { version = "1", features = ["derive"] }
thiserror = "1"
@@ -16,6 +16,6 @@ tracing = "0.1"
tracing-futures = "0.2"
[dev-dependencies]
-tokio = { version = "0.2", features = ["macros"] }
+tokio = { version = "1", features = ["macros"] }
envy = "0.4"
pretty_env_logger = "0" \ No newline at end of file