Skip to content
Snippets Groups Projects
Cargo.toml 723 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.0-dev"
    
    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"
    keywords      = ["buffers", "rope", "io"]
    exclude       = [
        ".gitignore",
        ".travis.yml",
        "deploy.sh",
        "bench/**/*",
        "test/**/*"
    ]
    
    Carl Lerche's avatar
    Carl Lerche committed
    [dependencies]
    
    Carl Lerche's avatar
    Carl Lerche committed
    log = "0.3.6"
    
    Carl Lerche's avatar
    Carl Lerche committed
    byteorder = "0.5.3"
    
    Carl Lerche's avatar
    Carl Lerche committed
    rand = "0.3.5"
    
    
    [[bench]]
    
    name = "bench"
    path = "bench/bench.rs"
    
    [[test]]
    
    name = "test"
    path = "test/test.rs"