20 lines
364 B
TOML
20 lines
364 B
TOML
[package]
|
|
name = "backend"
|
|
version = "0.1.0"
|
|
authors = ["Nathan Vegdahl <cessen@cessen.com>"]
|
|
license = "MIT"
|
|
edition = "2018"
|
|
|
|
[lib]
|
|
name = "backend"
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
ropey = { git = "https://github.com/cessen/ropey", branch = "2.0-alpha" }
|
|
tenthash = "0.2"
|
|
unicode-segmentation = "1.7"
|
|
|
|
[dev-dependencies]
|
|
proptest = "1.0"
|
|
criterion = "0.3.6"
|