forked from KdotJPG/OpenSimplex2
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (33 loc) · 797 Bytes
/
Cargo.toml
File metadata and controls
40 lines (33 loc) · 797 Bytes
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
[package]
name = "opensimplex2"
version = "1.1.0"
edition = "2021"
rust-version = "1.70.0"
description = "Port of OpenSimplex2"
authors = ["KdotJPG"]
license = "CC0-1.0"
repository = "https://github.com/KdotJPG/OpenSimplex2"
categories = ["algorithms", "graphics", "game-development"]
keywords = ["OpenSimplex", "Simplex", "noise", "random", "Perlin"]
# omit java, etc. from .crate file
include = [
"Cargo.toml",
"rust/*.rs",
]
[lib]
path = "rust/lib.rs"
crate-type = ["rlib", "staticlib", "cdylib"]
[profile.release]
opt-level = 3
lto = "fat"
codegen-units = 1
panic = "abort"
[features]
default = []
std = []
[lints]
clippy.excessive_precision = "allow"
clippy.identity_op = "allow"
clippy.too_many_arguments = "allow"
clippy.approx_constant = "allow"
clippy.suboptimal_flops = "allow"