serum-borsh 0.8.0-serum.1

Binary Object Representation Serializer for Hashing
Documentation
[package]
name = "serum-borsh"
version = "0.8.0-serum.1"
authors = ["Near Inc <hello@nearprotocol.com>", "Serum Foundation"]
edition = "2018"
license = "Apache-2.0"
readme = "README.md"
categories = ["encoding", "network-programming"]
repository = "https://github.com/nearprotocol/borsh"
homepage = "http://borsh.io"
description = """
Binary Object Representation Serializer for Hashing
"""

[lib]
name = "borsh"
path = "src/lib.rs"

[[bin]]
name = "generate_schema_schema"
path = "src/generate_schema_schema.rs"

[dependencies]
serum-borsh-derive = { path = "../borsh-derive", version = "0.7.2+serum.1" }
solana-sdk = { version = "1.3.14", default-features = false, optional = true }

[features]
default = ["std"]
serum-client = ["solana-sdk/default"]
serum-program = ["solana-sdk/program"]

# Provides impls for common standard library types like Vec<T>.
# Requires a dependency on the Rust standard library.
std = []