-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (27 loc) · 723 Bytes
/
Cargo.toml
File metadata and controls
34 lines (27 loc) · 723 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
34
[package]
name = "slice-dst"
version = "1.6.0"
edition = "2021"
rust-version = "1.80"
description = "Slice-based custom DSTs"
repository = "https://github.com/CAD97/pointer-utils/tree/master/crates/slice-dst"
readme = "README.md"
keywords = ["thin", "slice", "type", "erasure", "dst"]
categories = ["data-structures", "no-std", "rust-patterns"]
license = "MIT OR Apache-2.0"
[package.metadata.workspaces]
independent = true
[badges]
maintenance = { status = "passively-maintained" }
[features]
default = ["erasable"]
[dependencies.erasable]
version = "1.1.0"
path = "../erasable"
optional = true
[build-dependencies]
autocfg = "1.0.0"
[[test]]
name = "smoke"
path = "tests/smoke.rs"
required-features = ["erasable"]