forked from Auburn/FastNoiseLite
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (24 loc) · 698 Bytes
/
Cargo.toml
File metadata and controls
26 lines (24 loc) · 698 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
[package]
name = "fastnoise-lite"
version = "1.1.1"
edition = "2021"
license = "MIT"
description = "FastNoise Lite is an extremely portable open source noise generation library with a large selection of noise algorithms"
repository = "https://github.com/Auburn/FastNoiseLite"
readme = "README.md"
authors = ["Jordan Peck", "Keavon Chambers"]
categories = [
"algorithms",
"game-development",
"graphics",
"multimedia::images",
"rendering",
]
keywords = ["noise", "simplex", "perlin", "procedural", "terrain"]
[features]
default = ["std"]
f64 = []
std = ["num-traits/std"]
libm = ["num-traits/libm"]
[dependencies]
num-traits = { version = "0.2.18", optional = true, default-features = false }