Skip to content
Snippets Groups Projects
Cargo.toml 688 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"
    
    Carl Lerche's avatar
    Carl Lerche committed
    version       = "0.4.1"
    
    Carl Lerche's avatar
    Carl Lerche committed
    license       = "MIT"
    authors       = ["Carl Lerche <me@carllerche.com>"]
    description   = "Types and traits for working with bytes"
    documentation = "https://carllerche.github.io/bytes/bytes"
    homepage      = "https://github.com/carllerche/bytes"
    repository    = "https://github.com/carllerche/bytes"
    readme        = "README.md"
    
    Carl Lerche's avatar
    Carl Lerche committed
    keywords      = ["buffers", "zero-copy", "io"]
    
    Carl Lerche's avatar
    Carl Lerche committed
    exclude       = [
        ".gitignore",
        ".travis.yml",
        "deploy.sh",
        "bench/**/*",
        "test/**/*"
    ]
    
    Carl Lerche's avatar
    Carl Lerche committed
    categories = ["network-programming", "data-structures"]
    
    Carl Lerche's avatar
    Carl Lerche committed
    [dependencies]
    
    Aaron J. Todd's avatar
    Aaron J. Todd committed
    byteorder = "1.0.0"