textfsm-rust 0.3.0

Template-based state machine for parsing semi-formatted text based on Google's TextFSM
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "textfsm-rust"
version = "0.3.0"
authors = ["Joshua Benz <voidsifr@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Template-based state machine for parsing semi-formatted text based on Google's TextFSM"
homepage = "https://github.com/joshbenz/textfsm-rs"
documentation = "https://docs.rs/textfsm-rust"
readme = "README.md"
keywords = [
    "parser",
    "fsm",
    "network",
    "cli",
    "template",
]
categories = [
    "parsing",
    "text-processing",
    "network-programming",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/joshbenz/textfsm-rs"
resolver = "2"

[features]
default = []
serde = [
    "textfsm-core/serde",
    "dep:serde",
]

[lib]
name = "textfsm_rust"
path = "src/lib.rs"

[[example]]
name = "clitable_usage"
path = "examples/clitable_usage.rs"
required-features = ["serde"]

[[example]]
name = "compile_time_validation"
path = "examples/compile_time_validation.rs"

[[example]]
name = "comprehensive_ntc_test"
path = "examples/comprehensive_ntc_test.rs"
required-features = ["serde"]

[[example]]
name = "network_parsing"
path = "examples/network_parsing.rs"

[[example]]
name = "test_clitable"
path = "examples/test_clitable.rs"
required-features = ["serde"]

[[example]]
name = "test_clitable_ntc"
path = "examples/test_clitable_ntc.rs"
required-features = ["serde"]

[[example]]
name = "test_ntc_templates"
path = "examples/test_ntc_templates.rs"
required-features = ["serde"]

[[example]]
name = "test_serde_ntc"
path = "examples/test_serde_ntc.rs"
required-features = ["serde"]

[[example]]
name = "thread_safety"
path = "examples/thread_safety.rs"

[[test]]
name = "macro_tests"
path = "tests/macro_tests.rs"

[[test]]
name = "ntc_clitable_tests"
path = "tests/ntc_clitable_tests.rs"

[dependencies.serde]
version = "1.0"
optional = true

[dependencies.textfsm-core]
version = "0.3.0"

[dependencies.textfsm-macros]
version = "0.3.0"

[dev-dependencies.pretty_assertions]
version = "1.4.1"

[dev-dependencies.rayon]
version = "1.10"

[dev-dependencies.serde]
version = "1.0"
features = ["derive"]

[dev-dependencies.serde_json]
version = "1.0"

[dev-dependencies.serde_yaml]
version = "0.9"

[dev-dependencies.walkdir]
version = "2.4"