[package]
edition = "2021"
name = "funct"
version = "0.1.0"
authors = ["Jimmy Miller <jimmyhmiller@gmail.com>"]
build = false
exclude = [
"/.github",
"/docs/jim-editor-integration.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A small, functional, embeddable scripting language with a fully reified bytecode VM you can pause, snapshot, and resume."
homepage = "https://github.com/jimmyhmiller/funct"
documentation = "https://docs.rs/funct"
readme = "README.md"
keywords = [
"language",
"interpreter",
"scripting",
"embeddable",
"bytecode",
]
categories = [
"compilers",
"development-tools",
]
license = "MIT"
repository = "https://github.com/jimmyhmiller/funct"
[lib]
name = "funct"
path = "src/lib.rs"
[[bin]]
name = "funct"
path = "src/main.rs"
[[example]]
name = "_size"
path = "examples/_size.rs"
[[example]]
name = "chess_host"
path = "examples/chess_host.rs"
[[example]]
name = "style_host"
path = "examples/style_host.rs"
[[test]]
name = "arithmetic"
path = "tests/arithmetic.rs"
[[test]]
name = "budgets"
path = "tests/budgets.rs"
[[test]]
name = "chess_widget"
path = "tests/chess_widget.rs"
[[test]]
name = "edge_cases"
path = "tests/edge_cases.rs"
[[test]]
name = "funct_tests"
path = "tests/funct_tests.rs"
[[test]]
name = "host_bridge"
path = "tests/host_bridge.rs"
[[test]]
name = "hot_reload"
path = "tests/hot_reload.rs"
[[test]]
name = "interop"
path = "tests/interop.rs"
[[test]]
name = "language"
path = "tests/language.rs"
[[test]]
name = "loops"
path = "tests/loops.rs"
[[test]]
name = "modules"
path = "tests/modules.rs"
[[test]]
name = "persistence"
path = "tests/persistence.rs"
[[test]]
name = "semantics"
path = "tests/semantics.rs"
[[test]]
name = "stdlib"
path = "tests/stdlib.rs"
[[test]]
name = "threading"
path = "tests/threading.rs"
[[test]]
name = "vm_control"
path = "tests/vm_control.rs"
[dependencies.imbl]
version = "7.0.0"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"