-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
17 lines (14 loc) · 504 Bytes
/
Copy pathCargo.toml
File metadata and controls
17 lines (14 loc) · 504 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[package]
name = "fntools"
version = "0.1.0"
authors = ["Waffle <wafflelapkin@gmail.com>"]
edition = "2018"
[dependencies]
tuple_concat_impl = { git = "https://github.com/WaffleLapkin/tuple_concat_impls.git", rev = "332d3f053b0b4a1e8ece3988ccc28a3d3819b289", optional = true }
[features]
# no features by default
default = []
# Turns on features that depend on nightly rust
nightly = []
# Add features that depend on tuple concatenation (and tuple concatenation itself)
concat = ["tuple_concat_impl"]