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

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
bedrock_core = { git = "git://benbridle.com/bedrock_core", tag = "v3.0.0" }
phosphor = { git = "git://benbridle.com/phosphor", tag = "v1.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" ] }

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