Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'lib/text-size/Cargo.toml')
| -rw-r--r-- | lib/text-size/Cargo.toml | 22 |
1 files changed, 17 insertions, 5 deletions
diff --git a/lib/text-size/Cargo.toml b/lib/text-size/Cargo.toml index 9080b3fad8..95c11472cd 100644 --- a/lib/text-size/Cargo.toml +++ b/lib/text-size/Cargo.toml @@ -1,12 +1,24 @@ [package] -name = "text_unit" -version = "0.1.10" -authors = ["Aleksey Kladov <[email protected]>"] +name = "text-size" +version = "0.99.0-dev.2" +edition = "2018" + +authors = [ + "Aleksey Kladov <[email protected]>", + "Christopher Durham (CAD97) <[email protected]>" +] description = "Newtypes for text offsets" license = "MIT OR Apache-2.0" repository = "https://github.com/matklad/text_unit" documentation = "https://docs.rs/text_unit" [dependencies] -serde = { version = "1", optional = true, default_features = false } -deepsize = { version = "0.1", optional = true, default_features = false } +serde = { version = "1.0", optional = true, default_features = false } + +[dev-dependencies] +serde_test = "1.0" + +[[test]] +name = "serde" +path = "tests/serde.rs" +required-features = ["serde"] |