-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
35 lines (28 loc) · 1.01 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
[workspace]
[package]
name = "serde_closure"
version = "0.3.3"
license = "MIT OR Apache-2.0"
authors = ["Alec Mocatta <[email protected]>"]
categories = ["development-tools","encoding","rust-patterns","network-programming"]
keywords = ["closure","serialization","serde","distributed"]
description = """
Serializable and debuggable closures.
This library provides macros that wrap closures to make them serializable and debuggable.
"""
repository = "https://github.com/alecmocatta/serde_closure"
homepage = "https://github.com/alecmocatta/serde_closure"
documentation = "https://docs.rs/serde_closure"
readme = "README.md"
edition = "2018"
[badges]
azure-devops = { project = "alecmocatta/serde_closure", pipeline = "tests", build = "10" }
maintenance = { status = "actively-developed" }
[dependencies]
serde_closure_derive = { version = "=0.3.3", path = "serde_closure_derive" }
serde = { version = "1.0", features = ["derive"] }
[build-dependencies]
rustversion = "1.0"
[dev-dependencies]
serde_json = "1.0"
bincode = "1.0"