mirror of
https://github.com/NotAShelf/microfetch.git
synced 2026-04-12 12:57:41 +00:00
Signed-off-by: NotAShelf <raf@notashelf.dev> Change-Id: Ia24cb1647df93034937a8fcd6cad895c6a6a6964
27 lines
683 B
TOML
27 lines
683 B
TOML
[package]
|
|
name = "microfetch-lib"
|
|
description = "Microfetch library crate - exports all functionality including main function"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
authors.workspace = true
|
|
rust-version.workspace = true
|
|
license.workspace = true
|
|
publish = false
|
|
|
|
[dependencies]
|
|
hotpath = { optional = true, version = "0.14.0" }
|
|
microfetch-asm.workspace = true
|
|
|
|
[features]
|
|
hotpath = [ "dep:hotpath", "hotpath/hotpath" ]
|
|
hotpath-alloc = [ "hotpath/hotpath-alloc" ]
|
|
|
|
[dev-dependencies]
|
|
criterion.workspace = true
|
|
|
|
[[bench]]
|
|
harness = false
|
|
name = "benchmark"
|
|
|
|
[lints]
|
|
workspace = true
|