Lots more updates
Also begin adding rust building capabilities to be able to write rust binaries for some commands.
This commit is contained in:
parent
624508dd14
commit
dd1cfa79e7
52 changed files with 2509 additions and 150 deletions
5
rust/lib/common/src/base64.rs
Normal file
5
rust/lib/common/src/base64.rs
Normal file
|
@ -0,0 +1,5 @@
|
|||
use base64::Engine;
|
||||
|
||||
pub fn encode(bytes: &[u8]) -> String {
|
||||
base64::prelude::BASE64_STANDARD.encode(bytes)
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue