[package]
edition = "2024"
name = "soppo"
version = "0.10.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Compiler for Soppo, a Go superset with enums, pattern matching, and nil safety"
readme = "README.md"
keywords = [
"compiler",
"go",
"golang",
"language",
]
categories = [
"compilers",
"development-tools",
]
license = "BSD-3-Clause"
repository = "https://github.com/halcyonnouveau/soppo"
[lib]
name = "soppo"
path = "src/lib.rs"
[[bin]]
name = "sop"
path = "src/main.rs"
[[test]]
name = "common"
path = "tests/common.rs"
[[test]]
name = "gentest"
path = "tests/gentest.rs"
[[test]]
name = "interop"
path = "tests/interop.rs"
[[test]]
name = "multi"
path = "tests/multi.rs"
[[test]]
name = "proptest"
path = "tests/proptest.rs"
[[test]]
name = "single"
path = "tests/single.rs"
[[test]]
name = "sniff"
path = "tests/sniff.rs"
[[bench]]
name = "compiler"
path = "benches/compiler.rs"
harness = false
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.globset]
version = "0.4"
[dependencies.logos]
version = "0.16"
[dependencies.miette]
version = "7.6"
features = ["fancy"]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[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]
version = "0.8"
features = ["html_reports"]
[dev-dependencies.insta]
version = "1.46"
[dev-dependencies.proptest]
version = "1.9"
[dev-dependencies.regex]
version = "1.11"
[dev-dependencies.test-generator]
version = "0.3"
[profile.bench]
lto = true
[profile.release]
lto = "thin"
codegen-units = 1
strip = true