forked from ariel-os/trevm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
45 lines (35 loc) · 1.67 KB
/
Cargo.toml
File metadata and controls
45 lines (35 loc) · 1.67 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
[workspace]
members = [
"examples/[a-z]*",
"src/ariel-os-bindings",
]
exclude = ["build/", "payloads/"]
resolver = "3"
[workspace.package]
license = "MIT OR Apache-2.0"
version = "0.1.0"
edition = "2024"
[workspace.dependencies]
# Ariel OS imports
ariel-os = { path = "build/imports/ariel-os/src/ariel-os" }
ariel-os-alloc = { path = "build/imports/ariel-os/src/ariel-os-alloc", default-features = false }
ariel-os-boards = { path = "build/imports/ariel-os/src/ariel-os-boards", default-features = false }
ariel-os-debug = { path = "build/imports/ariel-os/src/ariel-os-debug", default-features = false }
ariel-os-embassy = { path = "build/imports/ariel-os/src/ariel-os-embassy", default-features = false }
ariel-os-coap = { path = "build/imports/ariel-os/src/ariel-os-coap", default-features = false }
ariel-os-random = { path = "build/imports/ariel-os/src/ariel-os-random", default-features = false }
ariel-os-hal = { path = "build/imports/ariel-os/src/ariel-os-hal", default-features = false }
ariel-os-sensors = { path = "build/imports/ariel-os/src/ariel-os-sensors", default-features = false }
ariel-os-sensors-registry = { path = "build/imports/ariel-os/src/ariel-os-sensors-registry", default-features = false }
wasmtime = { git = "https://github.com/bytecodealliance/wasmtime", rev = "3dc6b5ec5572ab8b304c668d5b929bbc7f49cbcf", default-features = false, features = [
"pulley",
"runtime",
"component-model",
] }
embassy-futures = { version = "0.1.1", default-features = false }
rand_core = { version = " 0.6.4", default-features = false }
trouble-host = { version = "0.5.0" }
[workspace.lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = [
'cfg(context, values(any()))',
] }