[go: up one dir, main page]

cbor 0.1.11

CBOR (binary JSON) with type based decoding and encoding.
[package]
name = "cbor"
version = "0.1.11"  #:version
authors = ["Andrew Gallant <jamslam@gmail.com>"]
description = "CBOR (binary JSON) with type based decoding and encoding."
documentation = "http://burntsushi.net/rustdoc/cbor/"
homepage = "https://github.com/BurntSushi/rust-cbor"
repository = "https://github.com/BurntSushi/rust-cbor"
readme = "README.md"
keywords = ["cbor", "json", "binary", "format", "encoding"]
license = "Unlicense"

[lib]
name = "cbor"

[[bin]]
path = "./src/bin/cbor2json.rs"
name = "cbor2json"
doc = false
test = false
bench = false

[[bin]]
path = "./src/bin/json2cbor.rs"
name = "json2cbor"
doc = false
test = false
bench = false

[[test]]
name = "tests"
test = false
bench = false

[[bench]]
path = "./tests/bench.rs"
name = "bench"
test = false
bench = true

[dependencies]
byteorder = "*"
rustc-serialize = "*"

[dev-dependencies]
quickcheck = "*"
rand = "*"