21 lines
442 B
TOML
21 lines
442 B
TOML
[package]
|
|
authors = ["Warp Team <dev@warp.dev>"]
|
|
name = "sum_tree"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish.workspace = true
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
arrayvec.workspace = true
|
|
log.workspace = true
|
|
|
|
[dev-dependencies]
|
|
rand.workspace = true
|
|
# Enable the `test-util` feature for our own package when running tests.
|
|
sum_tree = { path = ".", features = ["test-util"] }
|
|
|
|
[features]
|
|
# Enables utilities for testing.
|
|
test-util = []
|