Skip to content
Snippets Groups Projects
Cargo.toml 769 B
Newer Older
  • Learn to ignore specific revisions
  • Carl Lerche's avatar
    Carl Lerche committed
    [package]
    
    
    Carl Lerche's avatar
    Carl Lerche committed
    name          = "bytes"
    
    # When releasing to crates.io:
    # - Update html_root_url.
    # - Update CHANGELOG.md.
    # - Update doc URL.
    # - Create "v0.4.x" git tag.
    
    version       = "0.5.0"
    
    license       = "MIT"
    
    Carl Lerche's avatar
    Carl Lerche committed
    authors       = ["Carl Lerche <me@carllerche.com>"]
    description   = "Types and traits for working with bytes"
    
    documentation = "https://docs.rs/bytes"
    repository    = "https://github.com/tokio-rs/bytes"
    
    Carl Lerche's avatar
    Carl Lerche committed
    readme        = "README.md"
    
    Carl Lerche's avatar
    Carl Lerche committed
    keywords      = ["buffers", "zero-copy", "io"]
    categories = ["network-programming", "data-structures"]
    
    edition = "2018"
    
    Carl Lerche's avatar
    Carl Lerche committed
    [dependencies]
    
    Taiki Endo's avatar
    Taiki Endo committed
    byteorder = "1.3"
    
    serde = { version = "1.0", optional = true }
    
    either = { version = "1.5", default-features = false, optional = true }