-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
54 lines (46 loc) · 1.58 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
49
50
51
52
53
54
[package]
name = "microfacet"
version = "0.1.0"
authors = ["Reinier Maas <[email protected]>"]
# METADATA
description = "microfacet for rust"
documentation = "https://github.com/ReinierMaas/microfacet/"
homepage = "https://github.com/ReinierMaas/microfacet/"
repository = "https://github.com/ReinierMaas/microfacet/"
readme = "README.md"
keywords = ["microfacet", "brdf", "sample", "pdf", "surface_model"]
categories = ["algorithms", "game-engines", "games", "rendering", "rendering::engine"]
license = "MIT"
# Optional specification of badges to be displayed on crates.io. The badges
# currently available are Travis CI and Appveyor latest build status, specified
# using the following parameters:
# [badges]
# Travis CI: `repository` is required. `branch` is optional; default is `master`
# travis-ci = { repository = "...", branch = "master" }
# Appveyor: `repository` is required. `branch` is optional; default is `master`
# `service` is optional; valid values are `github` (default), `bitbucket`, and
# `gitlab`.
# appveyor = { repository = "...", branch = "master", service = "github" }
# PROFILES
# The development profile, used for `cargo build | run`.
[profile.dev]
opt-level = 0
debug = true
debug-assertions = true
# The release profile, used for `cargo build | run --release`.
[profile.release]
opt-level = 3
lto = true
# The testing profile, used for `cargo test`.
[profile.test]
opt-level = 0
debug = true
debug-assertions = true
# The benchmarking profile, used for `cargo bench`.
[profile.bench]
opt-level = 3
lto = true
[dependencies]
cgmath = "0.12.0"
rand = "0.3.15"
[dev-dependencies]