-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathCargo.toml
58 lines (50 loc) · 1.04 KB
/
Cargo.toml
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
[package]
name = "neotron-os"
version = "0.8.1"
authors = [
"Jonathan 'theJPster' Pallant <[email protected]>",
"The Neotron Developers"
]
edition = "2018"
description = "The Neotron Operating System"
license = "GPL-3.0-or-later"
readme = "README.md"
repository = "https://github.com/neotron-compute/Neotron-OS"
[[bin]]
name = "flash1002"
test = false
bench = false
[[bin]]
name = "flash0802"
test = false
bench = false
[[bin]]
name = "flash0002"
test = false
bench = false
[lib]
crate-type = ["rlib", "cdylib"]
required-features = ["native-log"]
[profile.release]
lto = true
debug = true
codegen-units = 1
opt-level = "z"
panic = "abort"
[profile.dev]
panic = "abort"
[dependencies]
chrono = { version = "0.4", default-features = false }
embedded-sdmmc = { version = "0.7", default-features = false }
heapless = "0.7"
menu = "0.3"
neotron-api = "0.2"
neotron-common-bios = "0.12.0"
neotron-loader = "0.1"
pc-keyboard = "0.7"
postcard = "1.0"
r0 = "1.0"
serde = { version = "1.0", default-features = false }
vte = "0.12"
[features]
lib-mode = []