Skip to content

Commit 054ff68

Browse files
authored
Upgrade to Rust 2024 edition (#103)
1 parent c898dad commit 054ff68

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "uuid-utils"
33
version = "0.12.0"
4-
edition = "2021"
4+
edition = "2024"
55

66
[lib]
77
name = "uuid_utils"

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
use ahash::AHasher;
22
use mac_address::get_mac_address;
33
use pyo3::{
4+
IntoPyObjectExt,
45
exceptions::{PyOSError, PyTypeError, PyValueError},
56
ffi,
67
prelude::*,
78
pyclass::CompareOp,
89
types::{PyBytes, PyDict},
9-
IntoPyObjectExt,
1010
};
1111
use std::{
1212
hash::{Hash, Hasher},

0 commit comments

Comments
 (0)