aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoraeon <jerry73204@gmail.com>2024-03-26 17:16:48 +0800
committeraeon <jerry73204@gmail.com>2024-03-26 17:16:48 +0800
commitd8cecf96a57aa3c1aec87bbcdcf5a112eb3cb60c (patch)
treef1da25b15b680e5fedb4b6b0a85f09300b9abc06
parent82cb02e92bc17f21c76c032edfc5275d63391104 (diff)
downloadziptree-rs-d8cecf96a57aa3c1aec87bbcdcf5a112eb3cb60c.tar.gz
ziptree-rs-d8cecf96a57aa3c1aec87bbcdcf5a112eb3cb60c.tar.zst
ziptree-rs-d8cecf96a57aa3c1aec87bbcdcf5a112eb3cb60c.zip
Use Rust 2021 edition
-rw-r--r--Cargo.toml3
1 files changed, 1 insertions, 2 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 2f48630..b019e54 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -2,14 +2,13 @@
name = "ziptree"
version = "0.1.1"
authors = ["jerry73204 <jerry73204@gmail.com>"]
-edition = "2018"
+edition = "2021"
description = "Tarjan's zip tree implemented in Rust"
categories = ["data-structures", "algorithms"]
documentation = "https://docs.rs/ziptree/0.1.0/ziptree/"
repository = "https://github.com/jerry73204/ziptree-rs"
homepage = "https://github.com/jerry73204/ziptree-rs"
license = "MIT"
-license-file = "LICENSE"
[dependencies]
rand = "^0.6"