generated from myrrlyn/template_rs
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
executable file
·48 lines (41 loc) · 1.1 KB
/
Cargo.toml
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
################################################################################
# Project Manifest #
# #
# This file describes the Rust project to the Cargo build tool for operations. #
################################################################################
[package]
name = "wyz"
version = "0.6.1"
authors = [
"myrrlyn <[email protected]>",
]
edition = "2018"
categories = [
"no-std",
]
description = "myrrlyn’s utility collection"
documentation = "https://docs.rs/wyz"
homepage = "https://myrrlyn.net/crates/wyz"
include = [
"Cargo.toml",
"LICENSE.txt",
"README.md",
"src/**/*.rs",
]
keywords = [
]
license = "MIT"
readme = "README.md"
repository = "https://github.com/myrrlyn/wyz"
rust-version = "1.40"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
[dependencies.once_cell]
version = "1"
optional = true
[dependencies.tap]
version = "1.0.1"
[features]
alloc = []
default = ["std"]
std = ["alloc"]