-
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathCargo.toml
More file actions
24 lines (21 loc) · 642 Bytes
/
Cargo.toml
File metadata and controls
24 lines (21 loc) · 642 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[package]
name = "endbasic-core"
version = "0.11.99" # ENDBASIC-VERSION
license = "Apache-2.0"
authors = ["Julio Merino <jmmv@endbasic.dev>"]
categories = ["development-tools", "parser-implementations"]
keywords = ["basic", "interpreter", "learning", "programming"]
description = "The EndBASIC programming language - core"
homepage = "https://www.endbasic.dev/"
repository = "https://github.com/endbasic/endbasic"
readme = "README.md"
edition = "2024"
[lints]
workspace = true
[dependencies]
async-channel = "2.2"
async-trait = "0.1"
thiserror = "1.0"
[dev-dependencies]
futures-lite = "2.2"
tokio = { version = "1", features = ["full"] }