-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathCargo.toml
39 lines (34 loc) · 1.12 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
[package]
name = "serde_traitobject"
version = "0.2.6"
license = "MIT OR Apache-2.0"
authors = ["Alec Mocatta <alec@mocatta.net>"]
categories = ["development-tools","encoding","rust-patterns","network-programming"]
keywords = ["trait-object","serialization","serde","distributed"]
description = """
Serializable and deserializable trait objects.
This library enables the serialization and deserialization of trait objects such that they can be sent between other processes running the same binary.
"""
repository = "https://github.com/alecmocatta/serde_traitobject"
homepage = "https://github.com/alecmocatta/serde_traitobject"
documentation = "https://docs.rs/serde_traitobject/0.2.6"
readme = "README.md"
edition = "2018"
[badges]
azure-devops = { project = "alecmocatta/serde_traitobject", pipeline = "tests", build = "9" }
maintenance = { status = "actively-developed" }
[dependencies]
serde = "1.0"
erased-serde = "0.3"
metatype = "0.2"
relative = "0.2"
[dev-dependencies]
serde_derive = "1.0"
serde_json = "1.0"
bincode = "1.0"
serde_closure = "0.2.2"
wasm-bindgen-test = "0.3"
[[test]]
name = "test"
path = "tests/test.rs"
harness = false