blob: e871ae008f9a4ee244df88a7682bf0db3e1466e3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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
|