hx_ruby 0.3.1 → 0.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/ext/hx_ruby/Cargo.toml +3 -3
- data/lib/hx_ruby/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 136b0b99ebf137e8ab504e73d1c26756edf053bdda6dfd7b4461e314ab585c3a
|
|
4
|
+
data.tar.gz: d463462e97eede53ac6cea7768c6d390e78e1e252c9e8a850984aee3a841c2d6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8404865de2431fcc810bc612c7143b89e16679c0fbbf342688484e0deccdef53752d11e6e5e15783b2407f11326e1436457eee16004be5dbc6a39a502e995819
|
|
7
|
+
data.tar.gz: 821e8153a882848b5c66fba0b4004ab278a3f47a1c9cad0d644746bda6d2c5603fd8ee803be1c72010d3232123030741015f4477a9e8d3730037ea48c9df82d7
|
data/ext/hx_ruby/Cargo.toml
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
[package]
|
|
12
12
|
name = "hx-ruby"
|
|
13
13
|
description = "Read Line 6 Helix and HX guitar preset files from Ruby"
|
|
14
|
-
version = "0.
|
|
14
|
+
version = "0.4.0"
|
|
15
15
|
edition = "2021"
|
|
16
16
|
license = "MIT"
|
|
17
17
|
repository = "https://github.com/crmne/tonepush"
|
|
@@ -35,7 +35,7 @@ crate-type = ["cdylib"]
|
|
|
35
35
|
# no sibling crates. A path would point at nothing there. The workspace root
|
|
36
36
|
# patches both back to the local sources, so building here still compiles what
|
|
37
37
|
# is checked out rather than what was last published.
|
|
38
|
-
hx-catalog = "0.
|
|
39
|
-
hx-proto = "0.
|
|
38
|
+
hx-catalog = "0.4.0"
|
|
39
|
+
hx-proto = "0.4.0"
|
|
40
40
|
magnus = "0.8"
|
|
41
41
|
serde_json = "1"
|
data/lib/hx_ruby/version.rb
CHANGED