forked from japaric/ufmt
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
34 lines (30 loc) · 911 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
34
[package]
authors = ["Alessandro Decina <[email protected]>"]
categories = ["embedded", "no-std"]
description = "A fork of `ufmt` tweaked to play nice with the eBPF kernel verifier"
documentation = "https://docs.rs/aya-ufmt"
edition = "2018"
keywords = ["Debug", "Display", "Write", "format"]
license = "MIT OR Apache-2.0"
name = "aya-ufmt"
readme = "README.md"
repository = "https://github.com/aya-rs/aya-ufmt"
version = "0.1.0"
[dependencies]
proc-macro-hack = "0.5.11"
ufmt-macros = { path = "macros", version = "0.1.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",
]