Skip to content

Commit a72eabc

Browse files
authored
2.1.5 - the JS side requires b64 padding
1 parent 4d189b5 commit a72eabc

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "dm-playground_controller"
33
description = "The rust serial-driven controller for the dm-playground project"
4-
version = "2.1.4"
4+
version = "2.1.5"
55
edition = "2021"
66
repository = "https://github.com/spacestation13/dm-playground_controller"
77
license = "MIT"

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ mod poll;
77
mod process;
88
mod signal;
99

10-
use base64::{engine::general_purpose::STANDARD_NO_PAD as BASE64, Engine};
10+
use base64::{engine::general_purpose::STANDARD as BASE64, Engine};
1111
use std::{
1212
env,
1313
io::{self, Read},

src/process.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
33
use crate::{PollData, PollType};
44

5-
use base64::{engine::general_purpose::STANDARD_NO_PAD as BASE64, Engine};
5+
use base64::{engine::general_purpose::STANDARD as BASE64, Engine};
66
use std::io::ErrorKind;
77
use std::{
88
sync::{Arc, Mutex},

0 commit comments

Comments
 (0)