-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
128 lines (124 loc) · 3.69 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
[package]
name = "chemsim"
version = "0.1.0"
authors = ["Remy Goldschmidt <[email protected]>"]
[dependencies]
piston = "*"
piston-float = "*"
piston-music = "*"
piston-texture = "*"
piston-shaders = "*"
piston-viewport = "*"
piston-history_tree = "*"
piston-timer_controller = "*"
pistoncore-glutin_window = "*"
# pistoncore-event = "*"
pistoncore-event_loop = "*"
pistoncore-input = "*"
pistoncore-window = "*"
piston2d-shapes = "*"
piston2d-sprite = "*"
piston2d-graphics = "*"
#piston2d-gfx_graphics = "*"
piston2d-glium_graphics = "*"
piston2d-opengl_graphics = "*"
piston2d-graphics_tree = "*"
piston3d-cam = "*"
#piston3d-gfx_voxel = "*"
piston3d-construct = "*"
gif = "*"
gfx = "*"
gfx_app = "*"
gfx_core = "*"
gfx_macros = "*"
gfx_device_gl = "*"
gfx_window_sdl = "*"
#gfx_window_glfw = "*"
#gfx_window_glutin = "*"
conrod_core = "*"
conrod_piston = "*"
#conrod_derive = "*"
ttf-noto-sans = "*"
rusttype = "*"
# mallumo = "*"
# ocl-core = "*"
# ocl-interop = "*"
# ocl = "*"
# clfft = "*"
arrayfire = "3.6.*"
# arrayfire_serde = "*"
timer = "0.2.*"
chrono = "0.4.*"
image = "*"
void = "*"
num = "0.1.*"
num-integer = "0.1.*"
num-complex = "0.1.*"
num-traits = "0.1.*"
generic-array = "*"
dimensioned = "*"
typenum = "*"
serde = "*"
serde_derive = "*"
serde_json = "*"
serde_cbor = "*"
# tokio = "*"
# futures = "*"
# mio = "*"
# tokio-fs = "*"
# tokio-io = "*"
# tokio-reactor = "*"
# tokio-tcp = "*"
# tokio-threadpool = "*"
# tokio-timer = "*"
# tokio-udp = "*"
# nalgebra = "*"
# nalgebra-lapack = "*"
quickcheck = "*"
# quickcheck_macros = "*"
proptest = "*"
approx = "*"
rand = "*"
log = "*"
bitflags = "*"
num_cpus = "*"
clap = "*"
toml = "*"
slab = "*"
#rayon = "*"
#rayon-core = "*"
dwt = "*"
prophet = "*"
daggy = "*"
# petgraph = "*"
xml-rs = "*"
xmltree = "*"
prettytable-rs = "*"
nanomsg = "*"
# diesel = "*"
# diesel_codegen = "*"
# sqlite = "*"
# rusqlite = "*"
assert = "*"
random = "*"
# matrix = "*"
webm = "1.0.0"
vpx = "0.3.1"
libvpx-native-sys = "*"
# ffmpeg-sys = "*"
# ffmpeg = { git = "https://github.com/meh/rust-ffmpeg", rev = "28b7a82ac1ca1e201f1967b7231c21eb2e2f7447" }
chemfiles = "0.8"
[lib]
name = "chemsim"
path = "src/lib.rs"
[[bin]]
name = "bin"
path = "src/main.rs"
[profile.release]
opt-level = 3
debug = false
rpath = false
lto = true
debug-assertions = false
codegen-units = 8
panic = "abort"