File: Cargo.toml.orig

package info (click to toggle)
rust-divbuf 0.4.1-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 204 kB
  • sloc: makefile: 2
file content (30 lines) | stat: -rw-r--r-- 631 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[package]
name = "divbuf"
version = "0.4.1"
authors = ["Alan Somers <asomers@gmail.com>"]
edition = "2018"
license = "MIT"
readme = "README.md"
repository = "https://github.com/asomers/divbuf"
description = """
Buffer object that can be recursively divided into smaller buffers
"""
documentation = "https://docs.rs/divbuf"
categories = ["data-structures"]
keywords = ["buffers", "io", "zero-copy"]
exclude       = [
    ".gitignore",
    ".travis.yml"
]

[package.metadata.docs.rs]
features = ["experimental"]
rustdoc-args = ["--cfg", "docsrs"]

[features]
experimental = []

[dependencies]

[dev-dependencies]
lazy_static = "1.1"