soppo 0.5.0

Compiler for Soppo, a Go superset with enums, pattern matching, and nil safety
Documentation
[[bench]]
harness = false
name = "compiler"
path = "benches/compiler.rs"

[[bin]]
name = "sop"
path = "src/main.rs"

[dependencies.clap]
features = ["derive"]
version = "4.5"

[dependencies.globset]
version = "0.4"

[dependencies.logos]
version = "0.16"

[dependencies.miette]
features = ["fancy"]
version = "7.6"

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

[dependencies.serde_json]
version = "1.0"

[dependencies.tempfile]
version = "3.23"

[dependencies.thiserror]
version = "2.0"

[dependencies.toml]
version = "0.9"

[dependencies.tree-sitter]
version = "0.26"

[dependencies.tree-sitter-go]
version = "0.25"

[dev-dependencies.criterion]
features = ["html_reports"]
version = "0.8"

[dev-dependencies.insta]
version = "1.44"

[dev-dependencies.proptest]
version = "1.9"

[dev-dependencies.regex]
version = "1.11"

[dev-dependencies.test-generator]
version = "0.3"

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

[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["compilers", "development-tools"]
description = "Compiler for Soppo, a Go superset with enums, pattern matching, and nil safety"
edition = "2024"
keywords = ["compiler", "go", "golang", "language"]
license = "BSD-3-Clause"
name = "soppo"
readme = "README.md"
repository = "https://github.com/halcyonnouveau/soppo"
version = "0.5.0"

[profile.bench]
lto = true

[profile.release]
codegen-units = 1
lto = "thin"
strip = true

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

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

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

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

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