File: Cargo.toml.orig

package info (click to toggle)
rust-string 0.2.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 108 kB
  • sloc: makefile: 4
file content (28 lines) | stat: -rw-r--r-- 727 bytes parent folder | download | duplicates (2)
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
[package]
name = "string"
# When releasing to crates.io:
# - Update html_root_url.
# - Update CHANGELOG.md.
# - Update README.md.
# - Update doc URL.
# - Create "v0.1.x" git tag.
version = "0.2.1"
license = "MIT"
authors = ["Carl Lerche <me@carllerche.com>"]
description = "A UTF-8 encoded string with configurable byte storage."
documentation = "https://docs.rs/string/0.2.1/string/"
homepage = "https://github.com/carllerche/string"
repository = "https://github.com/carllerche/string"
readme = "README.md"
keywords = ["string"]
categories = ["data-structures"]

[features]
default = ["bytes"]

[badges.travis-ci]
repository = "carllerche/string"
branch = "master"

[dependencies]
bytes = { version = "0.4", optional = true }