forked from dylanowen/advent-of-code-2019
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
43 lines (35 loc) · 851 Bytes
/
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
[package]
name = "advent-of-code-2019"
version = "0.0.1"
authors = ["Dylan Owen <[email protected]>"]
edition = "2018"
readme = "Readme.md"
homepage = "https://github.com/dylanowen/advent-of-code-2019"
repository = "https://github.com/dylanowen/advent-of-code-2019"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
crate-type = ["cdylib", "rlib"]
[dependencies]
log = "0.4"
env_logger = "0.7"
regex = "1"
lazy_static = "1.4.0"
num = "0.2"
rand = "0.6.1"
png = "0.15.1"
permutohedron = "0.2"
itertools = "0.8.2"
# wasm dependencies
futures = "0.1"
js-sys = "0.3"
wasm-bindgen = "0.2.55"
wasm-bindgen-futures = "0.3"
console_error_panic_hook = "0.1.5"
[dependencies.web-sys]
version = "0.3.32"
features = [
'console',
'HtmlCanvasElement',
'CanvasRenderingContext2d',
'ImageData',
]