File: Cargo.toml.orig

package info (click to toggle)
rust-lazycell 1.3.0-4
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 160 kB
  • sloc: makefile: 4
file content (27 lines) | stat: -rw-r--r-- 722 bytes parent folder | download | duplicates (3)
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
[package]
name = "lazycell"
version = "1.3.0"
authors = ["Alex Crichton <alex@alexcrichton.com>",
           "Nikita Pekin <contact@nikitapek.in>"]
description = "A library providing a lazily filled Cell struct"
repository = "https://github.com/indiv0/lazycell"
documentation = "http://indiv0.github.io/lazycell/lazycell/"
readme = "README.md"
keywords = ["lazycell", "lazy", "cell", "library"]
license = "MIT/Apache-2.0"
include = [
    "CHANGELOG.md",
    "Cargo.toml",
    "LICENSE-MIT",
    "LICENSE-APACHE",
    "README.md",
    "src/**/*.rs",
]

[dependencies]
clippy = { version = "0.0", optional = true }
serde = { version = "^1", optional = true }

[features]
nightly = []
nightly-testing = ["clippy", "nightly"]