diff options
author | cc <cc@localhost> | 2025-08-20 21:30:20 -0700 |
---|---|---|
committer | cc <cc@localhost> | 2025-08-20 21:30:20 -0700 |
commit | b7389213d70bba748c9ff08c9f91a99ac07e59c0 (patch) | |
tree | 1736aee74472d6d431719f77bb3a348341e3b7b4 /Cargo.toml |
Initial Pull
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..e871ae0 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,14 @@ +[package] +name = "avl_tree" +version = "0.2.0" +authors = ["Cornelius Aschermann <coco@hexgolems.com>"] +description = "A simple AVL Tree implementation" + +# This is a string description of the license for this package. Currently +# crates.io will validate the license provided against a whitelist of known +# license identifiers from http://spdx.org/licenses/. Multiple licenses can +# be separated with a `/` +license = "GPL-2.0" + +[dependencies] +rand = "*" # Or a specific version |