File tree 2 files changed +4
-2
lines changed
2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
11
11
12
12
- Allow ` partition_table_offset ` to be specified in the config file. (for #699 )
13
13
- Support external log-processors (#705 )
14
+ - Make the ` libudev ` dependency optional with a new - enabled by default - feature: ` libudev ` (#709 )
14
15
- Address Clippy lints (#710 )
15
16
16
17
### Changed
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ miette = "7.2.0"
54
54
parse_int = { version = " 0.6.0" , optional = true }
55
55
regex = { version = " 1.11.0" , optional = true }
56
56
serde = { version = " 1.0.210" , features = [" derive" ] }
57
- serialport = { version = " 4.6.0" , optional = true }
57
+ serialport = { version = " 4.6.0" , default-features = false , optional = true }
58
58
sha2 = " 0.10.8"
59
59
slip-codec = { version = " 0.4.0" , optional = true }
60
60
strum = { version = " 0.26.3" , features = [" derive" ] }
@@ -67,7 +67,8 @@ xmas-elf = "0.9.1"
67
67
libc = " 0.2.159"
68
68
69
69
[features ]
70
- default = [" cli" ]
70
+ default = [" cli" , " libudev" ]
71
+ libudev = [" serialport?/libudev" ]
71
72
cli = [
72
73
" dep:addr2line" ,
73
74
" dep:clap" ,
You can’t perform that action at this time.
0 commit comments