[package]
edition = "2024"
name = "cljrs"
version = "0.1.243"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "clojurust CLI — run, repl, compile, and eval"
readme = "README.md"
license = "EPL-1.0"
repository = "https://github.com/csm/clojurust"
resolver = "2"
[features]
async = [
"dep:cljrs-async",
"dep:cljrs-io",
"dep:tokio",
]
base64 = ["dep:cljrs-base64"]
charset = ["dep:cljrs-charset"]
default = [
"async",
"net",
"charset",
"base64",
]
enable-rustyline = ["rustyline"]
net = [
"dep:cljrs-net",
"async",
]
no-gc = [
"cljrs-gc/no-gc",
"cljrs-value/no-gc",
"cljrs-eval/no-gc",
"cljrs-compiler/no-gc",
"cljrs-stdlib/no-gc",
"cljrs-jit/no-gc",
]
[[bin]]
name = "cljrs"
path = "src/main.rs"
[[test]]
name = "auto_keyword_macro_jit"
path = "tests/auto_keyword_macro_jit.rs"
[[test]]
name = "background_lowering"
path = "tests/background_lowering.rs"
[[test]]
name = "compile_flag_combinations"
path = "tests/compile_flag_combinations.rs"
[[test]]
name = "compile_target"
path = "tests/compile_target.rs"
[[test]]
name = "cross_ns_macro_lowering"
path = "tests/cross_ns_macro_lowering.rs"
[[test]]
name = "format_width"
path = "tests/format_width.rs"
[[test]]
name = "git_dep_require"
path = "tests/git_dep_require.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[[test]]
name = "into_seq_target_jit"
path = "tests/into_seq_target_jit.rs"
[[test]]
name = "jit_robustness"
path = "tests/jit_robustness.rs"
[[test]]
name = "jit_seam_correctness"
path = "tests/jit_seam_correctness.rs"
[[test]]
name = "jit_specialization"
path = "tests/jit_specialization.rs"
[[test]]
name = "osr_promotion"
path = "tests/osr_promotion.rs"
[[test]]
name = "region_threading"
path = "tests/region_threading.rs"
[[test]]
name = "run_main"
path = "tests/run_main.rs"
[[test]]
name = "variadic_jit"
path = "tests/variadic_jit.rs"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.cljrs-async]
version = "0.1.243"
optional = true
[dependencies.cljrs-base64]
version = "0.1.243"
optional = true
[dependencies.cljrs-charset]
version = "0.1.243"
optional = true
[dependencies.cljrs-compiler]
version = "0.1.243"
[dependencies.cljrs-deps]
version = "0.1.243"
[dependencies.cljrs-dylib]
version = "0.1.243"
[dependencies.cljrs-eval]
version = "0.1.243"
[dependencies.cljrs-gc]
version = "0.1.243"
[dependencies.cljrs-interop]
version = "0.1.243"
[dependencies.cljrs-io]
version = "0.1.243"
optional = true
[dependencies.cljrs-ir]
version = "0.1.243"
[dependencies.cljrs-ir-viz]
version = "0.1.243"
[dependencies.cljrs-jit]
version = "0.1.243"
[dependencies.cljrs-logging]
version = "0.1.243"
[dependencies.cljrs-lsp]
version = "0.1.243"
[dependencies.cljrs-net]
version = "0.1.243"
optional = true
[dependencies.cljrs-nrepl]
version = "0.1.243"
[dependencies.cljrs-reader]
version = "0.1.243"
[dependencies.cljrs-stdlib]
version = "0.1.243"
[dependencies.cljrs-types]
version = "0.1.243"
[dependencies.cljrs-value]
version = "0.1.243"
[dependencies.cljrs-vcs]
version = "0.1.243"
features = ["ssh"]
[dependencies.libloading]
version = "0.8"
[dependencies.miette]
version = "7"
features = ["fancy"]
[dependencies.rustyline]
version = "18.0.0"
optional = true
[dependencies.tokio]
version = "1.50.0"
features = [
"rt",
"sync",
"time",
"macros",
]
optional = true
[dependencies.tracing]
version = "0.1.44"
[dependencies.tracing-subscriber]
version = "0.3.23"
[dev-dependencies.tempfile]
version = "3"