-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
31 lines (27 loc) · 985 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
[package]
name = "monostate"
version = "0.1.14"
authors = ["David Tolnay <[email protected]>"]
categories = ["encoding", "rust-patterns", "no-std", "no-std::no-alloc"]
description = "Type that deserializes only from one specific value"
documentation = "https://docs.rs/monostate"
edition = "2021"
keywords = ["serde", "serialization"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/dtolnay/monostate"
rust-version = "1.61"
[dependencies]
monostate-impl = { version = "=0.1.14", path = "impl" }
serde = { version = "1.0.166", default-features = false }
[dev-dependencies]
serde = { version = "1.0.166", features = ["derive"] }
serde_json = "1.0.99"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
rustdoc-args = [
"--generate-link-to-definition",
"--extern-html-root-url=core=https://doc.rust-lang.org",
"--extern-html-root-url=alloc=https://doc.rust-lang.org",
"--extern-html-root-url=std=https://doc.rust-lang.org",
]
[workspace]