-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
32 lines (28 loc) · 834 Bytes
/
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
[package]
name = "async-gcode"
version = "0.3.0"
authors = ["Wilfried Chauveau <wilfried.chauveau@ithinuel.me>"]
description = "An async gcode parser for no_std targets."
keywords = ["async", "await", "gcode"]
license = "MIT"
edition = "2021"
repository = "https://github.com/ithinuel/async-gcode"
categories = ["asynchronous", "embedded", "no-std", "parsing"]
[features]
default = ["std"]
std = []
parse-comments = []
parse-trailing-comment = []
parse-checksum = []
parse-parameters = []
parse-expressions = []
optional-value = []
string-value = []
[badges]
maintenance = { status = "experimental" }
[dev-dependencies]
futures-executor = { version = "0.3.21" }
[dependencies]
either = {version = "^1", default-features = false }
futures = { version = "0.3.21", default-features = false }
pin-project-lite = { version = "0.2.9" }