Skip to content

Commit d8d3cbf

Browse files
committed
chore: relax version specification and rely on semantic versioning
1 parent 4495b11 commit d8d3cbf

3 files changed

Lines changed: 21 additions & 21 deletions

File tree

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

twinleaf-tools/Cargo.toml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "twinleaf-tools"
3-
version = "1.7.0"
3+
version = "1.7.1"
44
edition = "2021"
55
license = "MIT"
66
description = "Tools for the Twinleaf I/O protocol for reading data from Twinleaf quantum sensors."
@@ -13,15 +13,15 @@ default = []
1313
hdf5 = ["twinleaf/hdf5"]
1414

1515
[dependencies]
16-
crossbeam = "0.8.4"
17-
serialport = "4.5.1"
18-
toml_edit = {version = "0.25.8", features = ["parse"]}
19-
twinleaf = {version = "1.7.0", path = "../twinleaf" }
20-
time = {version = "0.3.44", features = ["local-offset", "macros", "formatting"]}
21-
clap = { version = "4.5.51", features = ["derive"] }
22-
ratatui = "0.30.0"
23-
tui-prompts = "0.6.1"
24-
welch-sde = "0.1.0"
25-
memmap2 = "0.9.9"
26-
indicatif = "0.18.3"
27-
chrono = "0.4.44"
16+
crossbeam = "0.8"
17+
serialport = "4.5"
18+
toml_edit = {version = "0.25", features = ["parse"]}
19+
twinleaf = {version = "1.7", path = "../twinleaf" }
20+
time = {version = "0.3", features = ["local-offset", "macros", "formatting"]}
21+
clap = { version = "4.5", features = ["derive"] }
22+
ratatui = "0.30"
23+
tui-prompts = "0.6"
24+
welch-sde = "0.1"
25+
memmap2 = "0.9"
26+
indicatif = "0.18"
27+
chrono = "0.4"

twinleaf/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "twinleaf"
3-
version = "1.7.0"
3+
version = "1.7.1"
44
edition = "2021"
55
license = "MIT"
66
description = "Library for working with the Twinleaf I/O protocol and Twinleaf quantum sensors."
@@ -17,17 +17,17 @@ crossbeam = "0.8"
1717
mio-serial = "5.0"
1818
crc = "3.2"
1919
num_enum = "0.7"
20-
glob = "0.3.2"
21-
hdf5 = { package = "hdf5-metno", version = "0.12.4", features = ["static", "zlib", "blosc"], optional = true}
22-
dirs-next = "2.0.0"
20+
glob = "0.3"
21+
hdf5 = { package = "hdf5-metno", version = "0.12", features = ["static", "zlib", "blosc"], optional = true}
22+
dirs-next = "2.0"
2323

2424
[dependencies.mio]
2525
version = "1.0"
2626
features = ["os-poll", "net"]
2727

2828
[target.'cfg(target_os = "macos")'.dependencies]
29-
objc2-foundation = "0.3.1"
30-
objc2 = "0.6.2"
29+
objc2-foundation = "0.3"
30+
objc2 = "0.6"
3131

3232
[target.'cfg(target_os = "windows")'.dependencies]
3333
windows-sys = { version = "0.61", features = [

0 commit comments

Comments
 (0)