mirror of
https://github.com/zaphar/kitchen.git
synced 2025-07-22 19:40:14 -04:00
Update to the new base64 api
This commit is contained in:
parent
413f8de388
commit
6421b12e27
@ -13,7 +13,7 @@
|
|||||||
// limitations under the License.
|
// limitations under the License.
|
||||||
use std::collections::{BTreeMap, BTreeSet};
|
use std::collections::{BTreeMap, BTreeSet};
|
||||||
|
|
||||||
use base64;
|
use base64::{self, Engine};
|
||||||
use chrono::NaiveDate;
|
use chrono::NaiveDate;
|
||||||
use reqwasm;
|
use reqwasm;
|
||||||
use serde_json::{from_str, to_string};
|
use serde_json::{from_str, to_string};
|
||||||
@ -81,7 +81,7 @@ fn category_key<S: std::fmt::Display>(id: S) -> String {
|
|||||||
}
|
}
|
||||||
|
|
||||||
fn token68(user: String, pass: String) -> String {
|
fn token68(user: String, pass: String) -> String {
|
||||||
base64::encode(format!("{}:{}", user, pass))
|
base64::engine::general_purpose::STANDARD.encode(format!("{}:{}", user, pass))
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Clone, Debug)]
|
#[derive(Clone, Debug)]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user