File: Cargo.toml.orig

package info (click to toggle)
rust-nonempty 0.11.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 156 kB
  • sloc: makefile: 2
file content (21 lines) | stat: -rw-r--r-- 558 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
[package]
name = "nonempty"
version = "0.11.0"
description = "Correct by construction non-empty vector"
authors = ["Alexis Sellier <self@cloudhead.io>"]
edition = "2021"
license = "MIT"
repository = "https://github.com/cloudhead/nonempty"

[dependencies]
serde = { features = ["derive", "alloc"], default-features = false, optional = true, version = "1" }
arbitrary = { features = ["derive"], optional = true, version = "1" }

[features]
default = ["std"]
std = []
serialize = ["dep:serde"]
arbitrary = ["dep:arbitrary"]

[dev-dependencies]
serde_json = "1"