Unnamed repository; edit this file 'description' to name the repository.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
[package]
name = "text-size"
version = "1.1.1"
edition = "2024"

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/rust-analyzer/text-size"
documentation = "https://docs.rs/text-size"

[dependencies]
serde = { version = "1.0", optional = true, default-features = false }

[dev-dependencies]
serde_test = "1.0"
static_assertions = "1.1"

[[test]]
name = "serde"
path = "tests/serde.rs"
required-features = ["serde"]

[lints]
workspace = true