-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
48 lines (42 loc) · 1.1 KB
/
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
44
45
46
47
48
[workspace]
members = ["tuplez-macros"]
resolver = "2"
[workspace.package]
authors = ["Nichts Hsu <[email protected]>"]
license = "MIT OR Apache-2.0"
readme = "README.md"
edition = "2021"
documentation = "https://docs.rs/tuplez"
repository = "https://github.com/NichtsHsu/tuplez"
keywords = ["tuple", "no-std"]
[package]
name = "tuplez"
version = "0.14.16"
description = "Tuples represented in recursive form"
authors.workspace = true
license.workspace = true
readme.workspace = true
edition.workspace = true
documentation.workspace = true
repository.workspace = true
keywords.workspace = true
categories = ["data-structures", "no-std", "no-std::no-alloc"]
[features]
default = ["std", "unwrap"]
full-no-std = ["serde", "uninit", "unwrap"]
full = ["std", "full-no-std"]
full-nightly = ["full", "any_array"]
any_array = []
std = ["serde?/std"]
alloc = ["serde?/alloc"]
uninit = []
unwrap = []
[dependencies]
tuplez-macros = { path = "tuplez-macros", version = "0.7.0" }
[dependencies.serde]
version = "1.0"
default-features = false
features = ["derive"]
optional = true
[package.metadata.docs.rs]
features = ["full"]