[package]
edition = "2021"
name = "blisp"
version = "0.4.7"
authors = [
"Yuuki Takano <ytakanoster@gmail.com>",
"Fumiya Saito",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A lisp like statically typed programing language for no_std."
homepage = "https://ytakano.github.io/blisp/"
readme = "README.md"
keywords = [
"no_std",
"scripting",
"scripting-engine",
"scripting-language",
"embedded",
]
categories = [
"no-std",
"embedded",
]
license-file = "LICENSE"
repository = "https://github.com/ytakano/blisp"
[lib]
name = "blisp"
crate-type = ["rlib"]
path = "src/lib.rs"
[[test]]
name = "embedded"
path = "tests/embedded.rs"
[[test]]
name = "transpile"
path = "tests/transpile.rs"
[dependencies.blisp_embedded]
version = "0.1"
[dependencies.num-bigint]
version = "0.4"
default-features = false
[dependencies.num-traits]
version = "0.2"
features = ["libm"]
default-features = false