`cargo fix` recommended swapping my `if let`s for `match`s, which is appreciated but overzealous. Code still runs fine.
12 lines
298 B
TOML
12 lines
298 B
TOML
[package]
|
|
name = "pyority_queue"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
[lib]
|
|
name = "pyority_queue"
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
[dependencies]
|
|
pyo3 = { version = "0.23.4", features = ["py-clone"] }
|