mirror of https://git.sr.ht/~stygianentity/bincode
26 lines
758 B
TOML
26 lines
758 B
TOML
[workspace]
|
|
members = ["derive"]
|
|
|
|
[package]
|
|
name = "bincode"
|
|
version = "3.0.0" # remember to update html_root_url and bincode_derive
|
|
authors = [
|
|
"Ty Overby <ty@pre-alpha.com>",
|
|
"Zoey Riordan <zoey@dos.cafe>",
|
|
"Victor Koenders <bincode@trangar.com>",
|
|
]
|
|
exclude = ["logo.svg", "examples/*", ".gitignore", ".github/"]
|
|
rust-version = "1.85.0"
|
|
|
|
publish = true
|
|
|
|
repository = "https://github.com/bincode-org/bincode"
|
|
documentation = "https://docs.rs/bincode"
|
|
readme = "./README.md"
|
|
categories = ["encoding", "network-programming"]
|
|
keywords = ["binary", "encode", "decode", "serialize", "deserialize"]
|
|
|
|
license = "MIT"
|
|
description = "A binary serialization / deserialization strategy for transforming structs into bytes and vice versa!"
|
|
|
|
edition = "2021" |