Skip to content

Commit 0c8ddaa

Browse files
d-e-s-odanielocfb
authored andcommitted
examples/rust: Don't specify minimum Rust version for examples
It's not actually clear that specifying the minimum supported Rust version is something we should do in these examples. Dependencies should carry their own requirements and these examples by now should build on the majority of Rust versions out there, as they don't use any advanced features and 1.71, even assuming that it is accurate [which it may not be], is fairly "old" at this point. As such, the specified minimum Rust version is more of a maintenance burden, as it can clash with *higher* requirements caused by dependencies (see #342 as an example). Remove it. Signed-off-by: Daniel Müller <[email protected]>
1 parent aa18cc0 commit 0c8ddaa

File tree

3 files changed

+0
-3
lines changed

3 files changed

+0
-3
lines changed

examples/rust/profile/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ version = "0.1.0"
44
authors = ["Kuifeng Lee <[email protected]>"]
55
license = "GPL-2.0 OR BSD-3-Clause"
66
edition = "2021"
7-
rust-version = "1.71"
87

98
[dependencies]
109
blazesym = { path = "../../../blazesym", features = ["tracing"] }

examples/rust/tracecon/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ version = "0.1.0"
44
authors = ["Magnus Kulke <[email protected]>"]
55
edition = "2021"
66
license = "GPL-2.0 OR BSD-3-Clause"
7-
rust-version = "1.71"
87

98
[dependencies]
109
anyhow = "1.0"

examples/rust/xdp/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ name = "xdp"
33
version = "0.1.0"
44
authors = ["Hengqi Chen <[email protected]>"]
55
edition = "2021"
6-
rust-version = "1.71"
76

87
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
98

0 commit comments

Comments
 (0)