diff options
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 23 |
1 files changed, 16 insertions, 7 deletions
@@ -1,22 +1,31 @@ [package] name = "bedrock-pc" -version = "1.0.0-alpha3" +version = "1.2.0" authors = ["Ben Bridle"] -edition = "2021" -description = "Emulator for running Bedrock programs" +edition = "2024" +description = "Bedrock emulator" [dependencies] -bedrock-asm = { git = "git://benbridle.com/bedrock_asm", tag = "v4.0.6" } -bedrock-core = { git = "git://benbridle.com/bedrock_core", tag = "v5.0.0" } -phosphor = { git = "git://benbridle.com/phosphor", tag = "v3.2.1" } +bedrock-asm = { git = "git://benbridle.com/bedrock-asm", tag = "v1.0.2" } +bedrock-core = { git = "git://benbridle.com/bedrock-core", tag = "v1.0.0" } +phosphor = { git = "git://benbridle.com/phosphor", tag = "v3.3.2" } geometry = { git = "git://benbridle.com/geometry", tag = "v1.0.0" } +inked = { git = "git://benbridle.com/inked", tag = "v1.0.0" } +log = { git = "git://benbridle.com/log", tag = "v2.0.0" } +switchboard = { git = "git://benbridle.com/switchboard", tag = "v2.1.0" } +vagabond = { git = "git://benbridle.com/vagabond", tag = "v1.1.1" } chrono = { version = "0.4.38" } -xflags = "0.4.0-pre.1" +gilrs = { version = "0.11.0", optional = true } +dirs-next = "1.0.2" [target.'cfg(target_os = "windows")'.dependencies] windows = { version = "0.58.0", features = ["Win32_Storage_FileSystem"] } +[features] +default = ["gamepad"] +gamepad = ["dep:gilrs"] + [profile.release] lto=true opt-level="s" |