[package]
edition = "2021"
name = "rusty-lisp"
version = "0.79.0"
build = false
include = [
"src/**",
"/*.lisp",
"/Cargo.toml",
"/README.md",
"/LICENSE*",
"docs/SPEC.md",
"docs/TUTORIAL.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
default-run = "rusty"
description = "A modern Lisp interpreter in Rust with TCO, macros, JIT, verification checkers, and AI agent capabilities"
readme = "README.md"
license = "AGPL-3.0-or-later"
repository = "https://github.com/TheLakeMan/rusty"
[features]
default = ["python"]
python = ["dep:pyo3"]
[lib]
name = "rusty"
crate-type = [
"cdylib",
"rlib",
]
path = "src/lib.rs"
[[bin]]
name = "rusty"
path = "src/main.rs"
[[bin]]
name = "rusty-lsp"
path = "src/lsp_main.rs"
[dependencies.ed25519-dalek]
version = "2"
[dependencies.libloading]
version = "0.9.0"
[dependencies.pyo3]
version = "0.29"
features = [
"extension-module",
"abi3-py311",
]
optional = true
[dependencies.reqwest]
version = "0.12"
features = [
"json",
"rustls-tls",
]
default-features = false
[dependencies.rustc-hash]
version = "2"
[dependencies.rustyline]
version = "14.0"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.sha2]
version = "0.10"
[dependencies.tokio]
version = "1"
features = ["full"]