-
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathCargo.toml
More file actions
72 lines (59 loc) · 1.54 KB
/
Cargo.toml
File metadata and controls
72 lines (59 loc) · 1.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[package]
name = "endbasic"
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 - CLI"
homepage = "https://www.endbasic.dev/"
repository = "https://github.com/endbasic/endbasic"
readme = "README.md"
edition = "2024"
[lints]
workspace = true
[features]
default = ["crossterm"]
crossterm = ["endbasic-terminal"]
sdl = ["endbasic-sdl"]
rpi = ["endbasic-rpi", "endbasic-st7735s"]
[dependencies]
anyhow = "1.0"
async-channel = "2.2"
dirs = "5.0"
getoptsargs = "0.1"
thiserror = "1.0"
[dependencies.endbasic-client]
version = "0.11.99" # ENDBASIC-VERSION
path = "../client"
[dependencies.endbasic-core]
version = "0.11.99" # ENDBASIC-VERSION
path = "../core"
[dependencies.endbasic-repl]
version = "0.11.99" # ENDBASIC-VERSION
path = "../repl"
[dependencies.endbasic-rpi]
version = "0.11.99" # ENDBASIC-VERSION
path = "../rpi"
optional = true
[dependencies.endbasic-sdl]
version = "0.11.99" # ENDBASIC-VERSION
path = "../sdl"
optional = true
[dependencies.endbasic-st7735s]
version = "0.11.99" # ENDBASIC-VERSION
path = "../st7735s"
optional = true
[dependencies.endbasic-std]
version = "0.11.99" # ENDBASIC-VERSION
path = "../std"
[dependencies.endbasic-terminal]
version = "0.11.99" # ENDBASIC-VERSION
path = "../terminal"
optional = true
[dependencies.tokio]
version = "1"
features = ["full"]
[dev-dependencies]
regex = "1"
tempfile = "3"