Skip to content

Commit ca19632

Browse files
authored
Merge pull request #70 from epage/edition
chore: Migrate to Edition 2024
2 parents 112bea9 + 3631067 commit ca19632

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[workspace]
2-
resolver = "2"
2+
resolver = "3"
33

44
[workspace.package]
55
repository = "https://github.com/rust-cli/termtree"
66
license = "MIT"
7-
edition = "2021"
8-
rust-version = "1.74" # MSRV
7+
edition = "2024"
8+
rust-version = "1.85" # MSRV
99
include = [
1010
"build.rs",
1111
"src/**/*",

examples/pretty-test.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
//! To see the complete demo coupling with rust-script, you can refer to
33
//! <https://users.rust-lang.org/t/cargo-test-output-with-indentation/100149/2>
44
5-
use std::collections::{btree_map::Entry, BTreeMap};
5+
use std::collections::{BTreeMap, btree_map::Entry};
66
use termtree::{GlyphPalette, Tree};
77

88
fn main() {

0 commit comments

Comments
 (0)