-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (21 loc) · 746 Bytes
/
Cargo.toml
File metadata and controls
26 lines (21 loc) · 746 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
[package]
name = "rc_bump"
version = "0.1.2"
authors = ["Arthur Carcano <arthur.carcano@ocamlpro.com>"]
description = """An arena for heterogeneous types and without lifetimes"""
categories = ["memory-management", "rust-patterns", "no-std"]
keywords = ["arena", "memory", "bump", "allocator"]
repository = "https://github.com/krtab/rc_bump"
readme = "Readme.md"
edition = "2021"
resolver = "2"
license = "MIT OR Apache-2.0"
exclude = ["src/main.rs"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bench]]
name = "bench"
harness = false
[dependencies]
[dev-dependencies]
criterion = { version = "0.4", features = ["html_reports"] }
bumpalo = {version = "3.14", features = ["collections"] }