20 lines
599 B
TOML
20 lines
599 B
TOML
[package]
|
|
name = "bincode_derive"
|
|
version = "2.0.0-rc.1" # remember to update bincode
|
|
authors = ["Zoey Riordan <zoey@dos.cafe>", "Victor Koenders <bincode@trangar.com>"]
|
|
edition = "2021"
|
|
|
|
repository = "https://github.com/bincode-org/bincode"
|
|
documentation = "https://docs.rs/bincode_derive"
|
|
readme = "./readme.md"
|
|
categories = ["encoding", "network-programming"]
|
|
keywords = ["binary", "encode", "decode", "serialize", "deserialize"]
|
|
license = "MIT"
|
|
description = "Implementation of #[derive(Encode, Decode)] for bincode"
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
virtue = "0.0.8"
|