[package]
edition = "2024"
name = "rexlang-cli"
version = "3.9.9"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rex: A strongly-typed, pure, implicitly parallel functional programming language"
homepage = "https://rexlang.ai"
readme = "README.md"
license = "MIT"
repository = "https://github.com/talo/rex"
resolver = "2"
[lib]
name = "rexlang_cli"
path = "src/lib.rs"
[[bin]]
name = "gen_prelude_docs"
path = "src/bin/gen_prelude_docs.rs"
[[bin]]
name = "rex"
path = "src/bin/rex.rs"
[[test]]
name = "demos"
path = "tests/demos.rs"
[[test]]
name = "derive"
path = "tests/derive.rs"
[[test]]
name = "embedding"
path = "tests/embedding.rs"
[[test]]
name = "examples"
path = "tests/examples.rs"
[[test]]
name = "fuzz_smoke"
path = "tests/fuzz_smoke.rs"
[[test]]
name = "inject_adt"
path = "tests/inject_adt.rs"
[[test]]
name = "integer_literal_overloading"
path = "tests/integer_literal_overloading.rs"
[[test]]
name = "json_conversion"
path = "tests/json_conversion.rs"
[[test]]
name = "let_rec"
path = "tests/let_rec.rs"
[[test]]
name = "negative"
path = "tests/negative.rs"
[[test]]
name = "record_update"
path = "tests/record_update.rs"
[[test]]
name = "recursion"
path = "tests/recursion.rs"
[[test]]
name = "rust_types"
path = "tests/rust_types.rs"
[[test]]
name = "spec_semantics"
path = "tests/spec_semantics.rs"
[[test]]
name = "typeclasses_system"
path = "tests/typeclasses_system.rs"
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.rexlang]
version = "3.9.9"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
]
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = [
"env-filter",
"fmt",
]
[dependencies.uuid]
version = "1"
features = [
"v4",
"js",
]
[lints.clippy]
uninlined_format_args = "allow"