-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
24 lines (21 loc) · 740 Bytes
/
Cargo.toml
File metadata and controls
24 lines (21 loc) · 740 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
[workspace.package]
version = "0.5.0"
edition = "2024"
authors = ["Julien Peeters <inthehack@mountainhacks.org>"]
license = "Apache-2.0 OR MIT"
homepage = "https://github.com/inthehack/noshell"
repository = "https://github.com/inthehack/noshell"
description = "noshell, a no_std argument parser and a shell for constrained systems."
readme = "README.md"
[workspace]
resolver = "2"
members = ["noshell-parser", "noshell-macros", "noshell"]
[workspace.dependencies]
# Core dependencies.
defmt = "0.3.10"
futures = { version = "0.3.31", default-features = false }
heapless = "0.9.2"
nom = { version = "8.0.0", default-features = false }
thiserror = { version = "2.0.11", default-features = false }
# Dev dependencies.
googletest = "0.13.0"