summaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 5d50c510bf645715d6e1adccf1b7dd50050c69a4 (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.2.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 = "v2.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