-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
executable file
·33 lines (28 loc) · 854 Bytes
/
Cargo.toml
File metadata and controls
executable file
·33 lines (28 loc) · 854 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
26
27
28
29
30
31
32
33
[package]
name = "copy-stack-vec"
version = "0.1.0"
edition = "2024"
rust-version = "1.85"
license = "MIT OR Apache-2.0"
authors = ["nemynm"]
description = "A no_std, fixed-capacity, stack-allocated Copy vector for Copy types, with no unsafe code by default."
readme = "README.md"
documentation = "https://docs.rs/copy-stack-vec"
homepage = "https://github.com/nemynm/copy-stack-vec"
repository = "https://github.com/nemynm/copy-stack-vec"
keywords = ["no_std", "stack", "vector", "copy", "embedded"]
categories = ["data-structures", "no-std"]
[features]
default = []
serde = ["dep:serde"]
unsafe-maybe-uninit = []
[dependencies]
serde = { version = "1", default-features = false, features = ["derive"], optional = true }
[dev-dependencies]
serde_json = "1"
[profile.release]
strip = true
opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"