aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikhil Benesch <nikhil.benesch@gmail.com>2022-07-17 23:18:30 -0400
committerGitHub <noreply@github.com>2022-07-18 03:18:30 +0000
commit45670c47cebd7af050def2f80a307bdeec7caba3 (patch)
tree3aaa00be26de449938177b2c36e49ec2fb78c0fe
parent586a5fee5a1dd578dae857a45689aece7f03edeb (diff)
downloadr-alacritty-vte-45670c47cebd7af050def2f80a307bdeec7caba3.tar.gz
r-alacritty-vte-45670c47cebd7af050def2f80a307bdeec7caba3.tar.bz2
r-alacritty-vte-45670c47cebd7af050def2f80a307bdeec7caba3.zip
Bump arrayvec to 0.7.2
-rw-r--r--Cargo.toml2
-rw-r--r--src/lib.rs2
2 files changed, 2 insertions, 2 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 2b1e184..2b0a1fb 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -15,7 +15,7 @@ rust-version = "1.56.0"
[dependencies]
vte_generate_state_changes = { version = "0.1.0", path = "vte_generate_state_changes" }
-arrayvec = { version = "0.5.1", default-features = false, optional = true }
+arrayvec = { version = "0.7.2", default-features = false, optional = true }
utf8parse = { version = "0.2.0", path = "utf8parse" }
[features]
diff --git a/src/lib.rs b/src/lib.rs
index 4860fcc..f829208 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -78,7 +78,7 @@ pub struct Parser {
params: Params,
param: u16,
#[cfg(feature = "no_std")]
- osc_raw: ArrayVec<[u8; MAX_OSC_RAW]>,
+ osc_raw: ArrayVec<u8, MAX_OSC_RAW>,
#[cfg(not(feature = "no_std"))]
osc_raw: Vec<u8>,
osc_params: [(usize, usize); MAX_OSC_PARAMS],