-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
38 lines (30 loc) · 816 Bytes
/
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
[package]
name = "arrange"
version = "0.1.3"
authors = ["cryptopatrick <[email protected]>"]
edition = "2018"
description = "Convenience functions for populating an array with values from a range."
documentation = "https://docs.rs/arrange"
homepage = "https://github.com/cryptopatrick/arrange"
repository = "https://github.com/cryptopatrick/arrange"
readme = "README.md"
keywords = ["arrange", "array", "range", "utility"]
license = "Unlicense/MIT"
autotests = false
[lib]
name = "arrange"
path = "src/lib.rs"
#[bin]
#name = "arrange"
#path = "src/main.rs"
[[test]]
name = "tests"
path = "tests/tests.rs"
#[[bench]]
#name = "bench"
#path = "tests/bench.rs"
#
#[profile.bench]
#opt-level = 3
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]