generated from Tamschi/rust-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
57 lines (51 loc) · 1.55 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
49
50
51
52
53
54
55
56
57
[workspace]
members = [
".",
"proc-macro-definitions",
]
[package]
name = "fruit-salad"
version = "0.0.2"
authors = ["Tamme Schichler <[email protected]>"]
edition = "2018"
description = "Compare apples and oranges (and more). Trait object reference casting and trait object comparisons."
license = "MIT OR Apache-2.0"
repository = "https://github.com/Tamschi/fruit-salad"
homepage = "https://github.com/Tamschi/fruit-salad/tree/v0.0.2"
documentation = "https://docs.rs/fruit-salad/0.0.2"
keywords = ["pin", "trait", "object", "eq", "ord"]
categories = ["rust-patterns"]
readme = "README.md"
include = [
"**/*.rs",
"!tests/unincluded_*.rs", # Tests of meta data files not included in the package.
"Cargo.toml",
"CHANGELOG.md",
"CODE_OF_CONDUCT.md",
"COPYRIGHT.md",
"LICENSE-*",
"README.md",
"SECURITY.md",
]
resolver = "2"
publish = false
[badges]
is-it-maintained-issue-resolution = { repository = "Tamschi/fruit-salad" }
is-it-maintained-open-issues = { repository = "Tamschi/fruit-salad" }
maintenance = { status = "experimental" } # This may differ between branches.
[features]
alloc = []
default = ["std"]
macros = ["fruit-salad_proc-macro-definitions", "static_assertions"]
std = ["alloc"]
[dependencies]
fruit-salad_proc-macro-definitions = { version = "=0.0.2", path = "proc-macro-definitions", optional = true }
static_assertions = { version = "1.1.0", optional = true }
[dev-dependencies]
cargo-husky = "1.5.0"
git_info = "0.1.2"
version-sync = "0.9.3"
wasm-bindgen-test = "0.3.28"
[package.metadata.docs.rs]
all-features = true
targets = [] # No differences.