-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
43 lines (37 loc) · 964 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
35
36
37
38
39
40
41
42
43
[package]
name = "dyn-slice"
version.workspace = true
authors.workspace = true
edition.workspace = true
description = "&dyn [Trait] implementation, inspired by a Reddit thread."
readme = "README.md"
homepage.workspace = true
repository.workspace = true
license.workspace = true
keywords = ["dyn", "slice", "traits"]
categories = ["data-structures", "no-std"]
[lib]
name = "dyn_slice"
edition = "2021"
path = "lib/lib.rs"
crate-type = ["lib"]
[features]
default = ["std", "alloc"]
std = ["alloc"]
alloc = []
[dependencies]
dyn-slice-macros = { path = "dyn-slice-macros", version = "3.2.0" }
[dev-dependencies]
trybuild = { version = "1.0.82", features = ["diff"] }
[workspace]
resolver = "2"
members = [
"dyn-slice-macros"
]
[workspace.package]
version = "3.3.0-alpha.1"
authors = ["Tom Boddaert"]
edition = "2021"
homepage = "https://github.com/tomBoddaert/dyn-slice/"
repository = "https://github.com/tomBoddaert/dyn-slice/"
license = "MIT OR Apache-2.0"