mirror of
https://gitee.com/openharmony/third_party_rust_codespan
synced 2024-11-27 17:40:22 +00:00
22 lines
590 B
TOML
22 lines
590 B
TOML
[package]
|
|
name = "codespan"
|
|
version = "0.7.0" # CODESPAN
|
|
readme = "../README.md"
|
|
license = "Apache-2.0"
|
|
authors = ["Brendan Zabarauskas <bjzaba@yahoo.com.au>"]
|
|
description = "Data structures for tracking locations in source code"
|
|
homepage = "https://github.com/brendanzab/codespan"
|
|
repository = "https://github.com/brendanzab/codespan"
|
|
documentation = "https://docs.rs/codespan"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
serde = { version = "1", optional = true, features = ["derive"]}
|
|
unicode-segmentation = "1.6"
|
|
|
|
[dev-dependencies]
|
|
pretty_assertions = "0.6"
|
|
|
|
[features]
|
|
serialization = ["serde"]
|