Skip to content
Snippets Groups Projects
Cargo.toml 1015 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.4.12"
    
    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/0.4.12/bytes"
    
    Carl Lerche's avatar
    Carl Lerche committed
    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"]
    
    [package.metadata.docs.rs]
    features = ["i128"]
    
    
    Carl Lerche's avatar
    Carl Lerche committed
    [dependencies]
    
    serde = { version = "1.0", optional = true }
    
    either = { version = "1.5", default-features = false, optional = true }
    
    
    [features]
    i128 = ["byteorder/i128"]