-
Notifications
You must be signed in to change notification settings - Fork 11
/
Cargo.toml
58 lines (52 loc) · 1.28 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
55
56
57
58
[package]
name = "shadertoy-browser"
version = "0.6.1"
description = "Small Shadertoy browser & viewer for Mac"
authors = ["Johan Andersson <[email protected]>"]
repository = "https://github.com/repi/shadertoy-browser"
readme = "README.md"
license = "MIT OR Apache-2.0"
keywords = ["shaders", "shadertoy", "render", "mac", "metal"]
categories = ["rendering"]
exclude = ["screenshots/*"]
edition = "2018"
[badges]
travis-ci = { repository = "repi/shadertoy-browser" }
appveyor = { repository = "repi/shadertoy-browser" }
[workspace]
members = [
"shadertoy"
]
[dependencies]
shadertoy = { path = "shadertoy", version = "0.6.1" }
floating-duration = "0.1.2"
chrono = "0.4.19"
rayon = "1.5.0"
clap = "2.33.3"
shaderc = "0.7.2"
serde = "1.0.125"
serde_json = "1.0.64"
winit = "0.24.0"
libc = "0.2.93"
rust-base58 = "0.0.4"
colored = "2.0.0"
reqwest = "0.11.3"
error-chain = "0.12.4"
open = "1.7.0"
indicatif = "0.15.0"
thread_profiler = "0.3.0"
log = "0.4.14"
fern = "0.6.0"
sha3 = "0.9.1"
[target.'cfg(target_os = "macos")'.dependencies]
cocoa = "0.24.0"
objc = "0.2.7"
objc-foundation = "0.1.1"
metal = "0.21.0"
spirv_cross = { version = "0.23.1", features = ["msl"] }
foreign-types-shared = "0.1.1"
[profile.release]
debug = true
[features]
default = [ "profiler"]
profiler = ["thread_profiler/thread_profiler"]