aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--rust/Cargo.lock4
-rw-r--r--rust/fatcat-api-spec/Cargo.toml8
2 files changed, 6 insertions, 6 deletions
diff --git a/rust/Cargo.lock b/rust/Cargo.lock
index a48e38ab..5933716d 100644
--- a/rust/Cargo.lock
+++ b/rust/Cargo.lock
@@ -310,7 +310,7 @@ dependencies = [
"diesel_migrations 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
"dotenv 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
"error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)",
- "fatcat-api 0.1.0",
+ "fatcat-api-spec 0.1.0",
"futures 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)",
"hyper 0.10.13 (registry+https://github.com/rust-lang/crates.io-index)",
"iron 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -329,7 +329,7 @@ dependencies = [
]
[[package]]
-name = "fatcat-api"
+name = "fatcat-api-spec"
version = "0.1.0"
dependencies = [
"bodyparser 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
diff --git a/rust/fatcat-api-spec/Cargo.toml b/rust/fatcat-api-spec/Cargo.toml
index 72758cb4..4e70af06 100644
--- a/rust/fatcat-api-spec/Cargo.toml
+++ b/rust/fatcat-api-spec/Cargo.toml
@@ -17,22 +17,22 @@ chrono = { version = "0.4", features = ["serde"] }
futures = "0.1"
hyper = {version = "0.10", optional = true}
hyper-openssl = {version = "0.2", optional = true }
-iron = {version = "0.5", optional = true}
+iron = {version = "0.6", optional = true}
swagger = "0.7"
# Not required by example server.
#
-bodyparser = {version = "0.7", optional = true}
+bodyparser = {version = "0.8", optional = true}
url = "1.5"
lazy_static = "0.2"
log = "0.3.0"
multipart = {version = "0.13", optional = true}
-router = {version = "0.5", optional = true}
+router = {version = "0.6", optional = true}
serde = "1.0"
serde_derive = "1.0"
serde_ignored = {version = "0.0.4", optional = true}
serde_json = {version = "1.0", optional = true}
-urlencoded = {version = "0.5", optional = true}
+urlencoded = {version = "0.6", optional = true}
uuid = {version = "0.5", optional = true, features = ["serde", "v4"]}
# ToDo: this should be updated to point at the official crate once
# https://github.com/RReverser/serde-xml-rs/pull/45 is accepted upstream