[package]
edition = "2021"
name = "platform-lino"
version = "0.7.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust implementation of the Lino protocol parser"
readme = "README.md"
keywords = [
"lino",
"parser",
"links",
"notation",
"protocol",
]
categories = ["parsing"]
license = "Unlicense"
repository = "https://github.com/linksplatform/Protocols.Lino"
[lib]
name = "lino"
path = "src/lib.rs"
[[test]]
name = "api_tests"
path = "tests/api_tests.rs"
[[test]]
name = "edge_case_parser_tests"
path = "tests/edge_case_parser_tests.rs"
[[test]]
name = "indented_id_syntax_tests"
path = "tests/indented_id_syntax_tests.rs"
[[test]]
name = "link_tests"
path = "tests/link_tests.rs"
[[test]]
name = "links_group_tests"
path = "tests/links_group_tests.rs"
[[test]]
name = "mixed_indentation_modes_tests"
path = "tests/mixed_indentation_modes_tests.rs"
[[test]]
name = "multiline_parser_tests"
path = "tests/multiline_parser_tests.rs"
[[test]]
name = "multiline_quoted_string_tests"
path = "tests/multiline_quoted_string_tests.rs"
[[test]]
name = "nested_parser_tests"
path = "tests/nested_parser_tests.rs"
[[test]]
name = "single_line_parser_tests"
path = "tests/single_line_parser_tests.rs"
[dependencies.nom]
version = "8.0"