[package]
edition = "2021"
rust-version = "1.87"
name = "slicec"
version = "0.4.0"
authors = ["ZeroC Inc."]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = """
The Slice parser and other core components for Slice compilers.\r
"""
homepage = "https://docs.icerpc.dev/slice"
documentation = "https://docs.rs/slicec"
readme = "README.md"
keywords = [
"slice",
"ice",
"icerpc",
]
license = "Apache-2.0"
repository = "https://github.com/icerpc/slicec/slicec"
resolver = "3"
[lib]
name = "slicec"
path = "src/lib.rs"
[[bin]]
name = "slicec"
path = "src/main.rs"
[[test]]
name = "attribute_tests"
path = "tests/attribute_tests.rs"
[[test]]
name = "command_line_tests"
path = "tests/command_line_tests.rs"
[[test]]
name = "comment_tests"
path = "tests/comment_tests.rs"
[[test]]
name = "custom_tests"
path = "tests/custom_tests.rs"
[[test]]
name = "cycle_tests"
path = "tests/cycle_tests.rs"
[[test]]
name = "diagnostic_output_tests"
path = "tests/diagnostic_output_tests.rs"
[[test]]
name = "dicionary_tests"
path = "tests/dicionary_tests.rs"
[[test]]
name = "enum_tests"
path = "tests/enum_tests.rs"
[[test]]
name = "file_tests"
path = "tests/file_tests.rs"
[[test]]
name = "identifier_tests"
path = "tests/identifier_tests.rs"
[[test]]
name = "interface_tests"
path = "tests/interface_tests.rs"
[[test]]
name = "module_tests"
path = "tests/module_tests.rs"
[[test]]
name = "optional_tests"
path = "tests/optional_tests.rs"
[[test]]
name = "parser_tests"
path = "tests/parser_tests.rs"
[[test]]
name = "preprocessor_tests"
path = "tests/preprocessor_tests.rs"
[[test]]
name = "primitive_tests"
path = "tests/primitive_tests.rs"
[[test]]
name = "redefinition_tests"
path = "tests/redefinition_tests.rs"
[[test]]
name = "result_tests"
path = "tests/result_tests.rs"
[[test]]
name = "scope_resolution_tests"
path = "tests/scope_resolution_tests.rs"
[[test]]
name = "sequence_tests"
path = "tests/sequence_tests.rs"
[[test]]
name = "struct_tests"
path = "tests/struct_tests.rs"
[[test]]
name = "tag_tests"
path = "tests/tag_tests.rs"
[[test]]
name = "test_helpers"
path = "tests/test_helpers.rs"
[[test]]
name = "typealias_tests"
path = "tests/typealias_tests.rs"
[dependencies.clap]
version = "4.6.1"
features = ["derive"]
[dependencies.console]
version = "0.16.3"
[dependencies.convert_case]
version = "0.11.0"
[dependencies.in_definite]
version = "1.1.2"
[dependencies.lalrpop-util]
version = "0.23.1"
features = [
"std",
"unicode",
]
default-features = false
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.150"
[dependencies.slice-codec]
version = "0.4.0"
[dev-dependencies.test-case]
version = "3.3.1"
[build-dependencies.lalrpop]
version = "0.23.1"
default-features = false