-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (34 loc) · 744 Bytes
/
Cargo.toml
File metadata and controls
38 lines (34 loc) · 744 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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
[package]
edition = "2021"
name = "basic-lang"
version = "0.7.1"
authors = ["David Turnbull"]
license = "Apache-2.0 OR MIT"
homepage = "http://basic-lang.org/"
repository = "https://github.com/AE9RB/basic-lang"
description = "The BASIC Programming Language: Microcomputer Edition"
readme = "README.md"
exclude = ["patch"]
[profile.release]
panic = "abort"
lto = true
codegen-units = 1
opt-level = "s"
[dependencies]
ansi_term = "0.12"
chrono = "0.4"
crc = "1.8"
ctrlc = "3"
linefeed = "0.6"
mortal = "0.2"
rand = "0.8"
reqwest = {version = "0.11", default-features = false, features = ["blocking", "rustls-tls-native-roots"] }
[lib]
name = "basic"
doc = true
test = true
[[bin]]
name = "basic"
path = "src/main.rs"
doc = false
test = false