File: Cargo.toml.orig

package info (click to toggle)
rust-replace-with 0.1.8-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 136 kB
  • sloc: makefile: 4
file content (25 lines) | stat: -rw-r--r-- 738 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
[package]
name = "replace_with"
version = "0.1.8"
license = "MIT OR Apache-2.0"
authors = ["Alec Mocatta <alec@mocatta.net>"]
categories = ["rust-patterns"]
keywords = ["mutability"]
description = """
Temporarily take ownership of a value at a mutable location, and replace it with a new value based on the old one.
"""
repository = "https://github.com/alecmocatta/replace_with"
homepage = "https://github.com/alecmocatta/replace_with"
documentation = "https://docs.rs/replace_with"
readme = "README.md"
edition = "2018"

[badges]
azure-devops = { project = "alecmocatta/replace_with", pipeline = "tests", build = "11" }
maintenance = { status = "actively-developed" }

[features]
default = ["std"]
std = []
nightly = []
panic_abort = []