Skip to content

Commit e609aa5

Browse files
committed
Force smallvec version to avoid vulnerability
1 parent 202a2dd commit e609aa5

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

keyboard/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "caw_keyboard"
3-
version = "0.2.1"
3+
version = "0.2.2"
44
description = "Abstract representation of a (musical) keyboard for the caw synthesizer framework"
55
authors = ["Stephen Sherratt <[email protected]>"]
66
license = "MIT"
@@ -14,7 +14,7 @@ web = ["getrandom/js"]
1414

1515
[dependencies]
1616
caw_core = { version = "0.3", path = "../core" }
17-
smallvec = "1"
17+
smallvec = ">=1.6.1,<2"
1818
log = "0.4"
1919
rand = "0.8"
2020
getrandom = "0.2"

midi/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "caw_midi"
3-
version = "0.2.0"
3+
version = "0.2.1"
44
description = "Common midi logic for the caw synthesizer framework"
55
authors = ["Stephen Sherratt <[email protected]>"]
66
license = "MIT"
@@ -11,6 +11,6 @@ edition = "2021"
1111

1212
[dependencies]
1313
midly = "0.5"
14-
smallvec = "1.13"
14+
smallvec = ">=1.6.1,<2"
1515
caw_core = { version = "0.3", path = "../core" }
1616
caw_keyboard = { version = "0.2", path = "../keyboard" }

0 commit comments

Comments
 (0)