Update crates to latest version.
Showing
- Cargo.lock 628 additions, 865 deletionsCargo.lock
- Cargo.toml 12 additions, 12 deletionsCargo.toml
- src/database/guild.rs 1 addition, 1 deletionsrc/database/guild.rs
- src/database/mutual.rs 1 addition, 1 deletionsrc/database/mutual.rs
- src/database/permissions.rs 1 addition, 1 deletionsrc/database/permissions.rs
- src/guards/auth.rs 1 addition, 1 deletionsrc/guards/auth.rs
- src/guards/channel.rs 1 addition, 1 deletionsrc/guards/channel.rs
- src/guards/guild.rs 1 addition, 1 deletionsrc/guards/guild.rs
- src/routes/account.rs 1 addition, 1 deletionsrc/routes/account.rs
- src/routes/channel.rs 1 addition, 1 deletionsrc/routes/channel.rs
- src/routes/guild.rs 13 additions, 10 deletionssrc/routes/guild.rs
- src/routes/user.rs 1 addition, 1 deletionsrc/routes/user.rs
- src/websocket/mod.rs 1 addition, 1 deletionsrc/websocket/mod.rs
This diff is collapsed.
... | @@ -7,23 +7,23 @@ edition = "2018" | ... | @@ -7,23 +7,23 @@ edition = "2018" |
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
[dependencies] | [dependencies] | ||
mongodb = "0.9.0" | mongodb = "0.9.2" | ||
bson = "0.14.0" | bson = "0.14.1" | ||
rocket = { version = "0.4.2", default-features = false } | rocket = { version = "0.4.4", default-features = false } | ||
once_cell = "1.3.1" | once_cell = "1.3.1" | ||
dotenv = "0.15.0" | dotenv = "0.15.0" | ||
ulid = "0.3.1" | ulid = "0.3.1" | ||
serde = { version = "1.0", features = ["derive"] } | serde = { version = "1.0", features = ["derive"] } | ||
rocket_contrib = "0.4.2" | rocket_contrib = "0.4.4" | ||
validator = "0.10.0" | validator = "0.10.0" | ||
bcrypt = "0.6.1" | bcrypt = "0.7.0" | ||
chrono = "0.4.10" | chrono = "0.4.11" | ||
rand = "0.7.3" | rand = "0.7.3" | ||
time = "0.2.4" | time = "0.2.9" | ||
reqwest = { version = "0.10.1", features = ["blocking", "json"] } | reqwest = { version = "0.10.4", features = ["blocking", "json"] } | ||
num_enum = "0.4.2" | num_enum = "0.4.3" | ||
ws = "0.9.1" | ws = "0.9.1" | ||
hashbrown = "0.7.0" | hashbrown = "0.7.1" | ||
serde_json = "1.0.47" | serde_json = "1.0.51" | ||
rocket_cors = "0.5.1" | rocket_cors = "0.5.2" | ||
bitfield = "0.13.2" | bitfield = "0.13.2" |
Please register or sign in to comment