Skip to content

Commit 428a686

Browse files
authored
Use semver-compatible version constraints instead of open-ended ranges (#176)
Replace open-ended version ranges (>=X.Y.Z) with caret requirements (X.Y.Z) for all dependencies to follow best practices and address packaging concerns.
1 parent 08e5e2a commit 428a686

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

Cargo.toml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,19 @@ license = "Apache-2.0"
77
authors = ["Jose Fernandez <[email protected]>"]
88

99
[build-dependencies]
10-
libbpf-cargo = ">=0.24.4"
10+
libbpf-cargo = "0.24.4"
1111

1212
[dependencies]
13-
tracing = ">=0.1.41"
14-
tracing-subscriber = ">=0.3.20"
15-
tracing-journald = ">=0.3.1"
16-
libbpf-rs = ">=0.24.4"
17-
libbpf-sys = ">=1.5.0"
18-
crossterm = ">=0.28.1"
19-
anyhow = ">=1.0.99"
20-
ratatui = { version = ">=0.29.0", default-features = false, features = ['crossterm'] }
21-
nix = { version = ">=0.29.0", features = ["user"] }
22-
circular-buffer = ">=1.1.0"
23-
procfs = ">=0.17.0"
24-
tui-input = ">=0.14.0"
25-
clap = { version = ">=4.5.45", features = ["derive"] }
13+
tracing = "0.1.41"
14+
tracing-subscriber = "0.3.20"
15+
tracing-journald = "0.3.1"
16+
libbpf-rs = "0.24.4"
17+
libbpf-sys = "1.5.0"
18+
crossterm = "0.28.1"
19+
anyhow = "1.0.99"
20+
ratatui = { version = "0.29.0", default-features = false, features = ['crossterm'] }
21+
nix = { version = "0.29.0", features = ["user"] }
22+
circular-buffer = "1.1.0"
23+
procfs = "0.17.0"
24+
tui-input = "0.14.0"
25+
clap = { version = "4.5.45", features = ["derive"] }

0 commit comments

Comments
 (0)