-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathCargo.toml
155 lines (121 loc) · 3.21 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
cargo-features = ["per-package-target", "profile-rustflags"]
[package]
name = "mnemos"
version = "0.1.0"
description = """
The MnemOS Kernel. Built around asynchronous kernel tasks which use
message passing as the primary means of interaction. Provided as a
no_std library crate.
"""
authors = [
"James Munns <[email protected]>",
"Eliza Weisman <[email protected]>",
]
edition = "2021"
readme = "./README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/tosc-rs/mnemos"
homepage = "https://mnemos.dev"
categories = [
"embedded",
"no-std",
]
build = "build.rs"
[lib]
name = "kernel"
[features]
# enables the serial port trace protocol.
# this is feature flagged so that it can be disabled in the simulator platforms
# (melpomene and pomelo), which provide their own native tracing subscribers.
serial-trace = ["mnemos-trace-proto", "tracing-core", "tracing-serde-structured"]
[dependencies]
[dependencies.futures]
version = "0.3.21"
features = ["async-await"]
default-features = false
[dependencies.uuid]
version = "1.1.2"
default-features = false
features = ["serde"]
[dependencies.cobs]
version = "0.2.3"
default-features = false
[dependencies.tracing]
version = "0.1.35"
features = ["attributes"]
default-features = false
[dependencies.tracing-core]
version = "0.1.31"
default-features = false
optional = true
[dependencies.tracing-serde-structured]
git = "https://github.com/hawkw/tracing-serde-structured"
branch = "eliza/span-fields"
default-features = false
optional = true
[dependencies.mnemos-trace-proto]
path = "../trace-proto"
optional = true
[dependencies.maitake]
workspace = true
features = ["alloc"]
[dependencies.mycelium-util]
version = "0.1.0"
default-features = false
[dependencies.spitebuf]
path = "../spitebuf"
[dependencies.mnemos-alloc]
version = "0.1.0"
path = "../alloc"
[dependencies.heapless]
version = "0.7.10"
[dependencies.mnemos-abi]
version = "0.1.0"
path = "../abi"
[dependencies.serde]
version = "1.0.136"
default-features = false
features = ["derive"]
[dependencies.postcard]
version = "1.0.1"
features = ["experimental-derive"]
[dependencies.embedded-graphics]
version = "0.7.1"
[dependencies.embedded-hal-async]
version = "0.2.0-alpha.2"
[dependencies.forth3]
path = "../forth3"
features = ["async"]
[dependencies.portable-atomic]
version = "1.3"
default-features = false
features = ["require-cas"]
[dependencies.input-mgr]
git = "https://github.com/tosc-rs/teletype/"
rev = "de95e610cc79db6d59ad6b40eb2d82adebb4e033"
[dependencies.ring-drawer]
git = "https://github.com/tosc-rs/teletype/"
rev = "de95e610cc79db6d59ad6b40eb2d82adebb4e033"
[dependencies.sermux-proto]
path = "../sermux-proto"
default-features = false
[dependencies.profont]
version = "0.6.1"
[dependencies.mycelium-bitfield]
version = "0.1.5"
[build-dependencies]
vergen = { version = "8.0.0", features = ["cargo", "git", "gitcl", "rustc",] }
[dev-dependencies.futures]
version = "0.3.21"
features = ["async-await", "executor"]
default-features = false
[dev-dependencies.mnemos-alloc]
version = "0.1.0"
features = ["use-std"]
path = "../alloc"
[dev-dependencies.tracing-subscriber]
version = "0.3.17"
features = ["fmt", "env-filter"]
[dev-dependencies.postcard]
version = "1.0.1"
features = ["use-std"]