-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (24 loc) · 765 Bytes
/
Copy pathCargo.toml
File metadata and controls
27 lines (24 loc) · 765 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
[package]
name = "noterm"
version = "0.2.3"
edition = "2024"
authors = ["Julien Peeters <inthehack@mountainhacks.org>"]
license = "Apache-2.0 OR MIT"
homepage = "https://github.com/inthehack/noterm"
repository = "https://github.com/inthehack/noterm"
description = "noterm, a no_std terminal handler."
readme = "README.md"
[features]
std = []
[dependencies]
bitflags = "2.10.0"
defmt = { version = "1.0.1", optional = true }
futures = { version = "0.3.31", default-features = false }
heapless = { version = "0.8.0" }
nom = { version = "8.0.0", default-features = false }
thiserror = { version = "2.0.11", default-features = false }
[dev-dependencies]
rstest = "0.26.1"
speculoos = "0.13.0"
tokio = { version = "1.48.0", features = ["full"] }
trybuild = "1.0.115"