-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathCargo.toml
36 lines (31 loc) · 1.06 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
[package]
name = "implicit-clone"
version = "0.5.0"
authors = ["Cecile Tonglet <[email protected]>"]
license = "MIT OR Apache-2.0"
edition = "2021"
description = "Immutable types and ImplicitClone trait similar to Copy"
repository = "https://github.com/yewstack/implicit-clone"
homepage = "https://github.com/yewstack/implicit-clone"
documentation = "https://docs.rs/implicit-clone"
readme = "README.md"
keywords = ["immutable", "cheap-clone", "copy", "rc"]
categories = ["rust-patterns"]
rust-version = "1.64"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[features]
default = ["derive"]
map = ["indexmap"]
serde = ["dep:serde", "indexmap/serde"]
derive = ["implicit-clone-derive"]
[dependencies]
implicit-clone-derive = { version = "0.1", optional = true, path = "./implicit-clone-derive" }
indexmap = { version = "2", optional = true }
serde = { version = "1", optional = true }
[dev-dependencies]
static_assertions = "1"
[workspace]
default-members = [".", "implicit-clone-derive"]
members = ["implicit-clone-derive", "benches"]