-
Notifications
You must be signed in to change notification settings - Fork 40
/
Cargo.toml
33 lines (29 loc) · 871 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
33
[package]
authors = ["Jorge Aparicio <jorge@japaric.io>"]
categories = ["embedded", "no-std"]
description = "A (6-40x) smaller, (2-9x) faster and panic-free alternative to `core::fmt`"
documentation = "https://docs.rs/ufmt"
edition = "2021"
keywords = ["Debug", "Display", "Write", "format"]
license = "MIT OR Apache-2.0"
name = "ufmt"
readme = "README.md"
repository = "https://github.com/japaric/ufmt"
version = "0.2.0"
[dependencies]
ufmt-macros = { path = "macros", version = "0.3.0" }
ufmt-write = { path = "write", version = "0.1.0" }
# NOTE do NOT add an `alloc` feature before the alloc crate can be used in
# no-std BINARIES
[features]
# NOTE do NOT turn `std` into a default feature; this is a no-std first crate
std = ["ufmt-write/std"]
[[test]]
name = "vs-std-write"
required-features = ["std"]
[workspace]
members = [
"macros",
"utils",
"write",
]