futures_cbor_codec 0.1.0

A codec for framing an AsyncRead/AsyncWrite with cbor for all types that are serializable with serde
package:

  # When releasing to crates.io:
  #
  # - Update CHANGELOG.md.
  # - Update version numbers in install section of readme and lib.rs.
  # - merge dev branch into master
  # - create git tag
  #
  version       : 0.1.0
  name          : futures_cbor_codec
  authors       : [ Naja Melan <najamelan@autistici.org> ]
  description   : A codec for framing an AsyncRead/AsyncWrite with cbor for all types that are serializable with serde
  documentation : https://docs.rs/futures_cbor_codec
  repository    : https://github.com/najamelan/futures_cbor_codec
  readme        : README.md
  keywords      : [ cbor, futures, framing, serialization ]
  categories    : [ asynchronous, network-programming ]
  license       : Apache-2.0/MIT
  edition       : "2018"

  metadata:
    docs.rs:
      features: [ external_doc ]


features:

  external_doc: []


badges:

  maintenance : { status     : actively-developed           }
  travis-ci   : { repository : najamelan/futures_cbor_codec }


dependencies:

  bytes         : ^0.4
  serde         : ^1
  serde_cbor    : ^0.10
  futures_codec : ^0.2


dev-dependencies:

  futures_ringbuf : ^0.1
  futures-preview : ^0.3.0-alpha


target:

  'cfg(not( target_arch = "wasm32" ))':

    dev-dependencies:

      romio: ^0.3.0-alpha


  'cfg(target_arch = "wasm32")':

    dev-dependencies:

      wasm-bindgen       : ^0.2
      wasm-bindgen-test  : ^0.2
      getrandom          : { version: ^0.1, features: [ wasm-bindgen ] }
      naja_async_runtime : { version: ^0.3, default-features: false    }



patch:

  crates-io:

    futures_codec : { git: "https://github.com/matthunz/futures-codec.git" }