diff options
| author | Douman <[email protected]> | 2018-11-11 18:40:32 +0300 |
|---|---|---|
| committer | Ken Swenson <[email protected]> | 2018-11-11 10:46:59 -0500 |
| commit | a3cf68014944a6e7264113a49902c68dfe41898e (patch) | |
| tree | 4d41d8d5bd5ae8f81ab946e20c80b1e36454f439 | |
| parent | Update context and edit_profile doc test (diff) | |
| download | serenity-a3cf68014944a6e7264113a49902c68dfe41898e.tar.xz serenity-a3cf68014944a6e7264113a49902c68dfe41898e.zip | |
Update `base64` and `sodiumoxide` (#431)
`sodiumoxide` builds with the `std`-feature now as it depends on a feature unavailable for Rust 1.25.
| -rw-r--r-- | Cargo.toml | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -20,7 +20,7 @@ serde_json = "^1.0" [dependencies.base64] optional = true -version = "~0.9" +version = "0.10" [dependencies.byteorder] optional = true @@ -66,8 +66,9 @@ version = "^0.4" [dependencies.sodiumoxide] default-features = false +features = ["std"] optional = true -version = "0.0.14" +version = "0.1" [dependencies.threadpool] optional = true |