summaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: f62ae9f8fc81f262bfe71a4a723739ab328fd29b (plain) (blame)
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
[package]
name = "bedrock_emu"
version = "0.5.0"
authors = ["Ben Bridle"]
edition = "2021"
description = "Emulator for running Bedrock programs"


[dependencies]
bedrock_core = { git = "git://benbridle.com/bedrock_core", tag = "v4.0.0" }
phosphor = { git = "git://benbridle.com/phosphor", tag = "v2.0.0" }
geometry = { git = "git://benbridle.com/geometry", tag = "v1.0.0" }

mini_paste = "0.1.11"
time = { version = "0.3.30", features = [ "local-offset" ] }


[target.'cfg(target_os = "windows")'.dependencies]
windows = { version = "0.58.0", features = ["Win32_Storage_FileSystem"] }


[profile.release]
lto=true
opt-level="s"
debug=false
strip=true
codegen-units=1