endbasic-core 0.4.0

The EndBASIC programming language - core
Documentation
[package]
name = "endbasic-core"
version = "0.4.0"
license = "Apache-2.0"
authors = ["Julio Merino <julio@meroh.net>"]
categories = ["development-tools", "parser-implementations"]
keywords = ["basic", "interpreter", "learning", "programming"]
description = "The EndBASIC programming language - core"
homepage = "https://github.com/jmmv/endbasic"
repository = "https://github.com/jmmv/endbasic"
readme = "README.md"
edition = "2018"

[badges]
travis-ci = { repository = "jmmv/endbasic", branch = "master" }

[dependencies]
async-trait = "0.1"
thiserror = "1.0"
time = { version = "0.2", features = ["std"] }

# We don't directly use getrandom but rand does, and we have to customize how
# getrandom is built if we want it to work in a WASM context.
[dependencies.getrandom]
version = "0.2"
features = ["js"]

[dependencies.rand]
version = "0.8"
default-features = false
features = ["small_rng", "std"]

[dev-dependencies]
futures-lite = "1.1"
regex = "1"