blob: 989a99443d434995aa896c402402a5f23fda2f5c (
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.1"
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
|