-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (25 loc) · 806 Bytes
/
Cargo.toml
File metadata and controls
30 lines (25 loc) · 806 Bytes
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
28
29
30
[package]
name = "rgbobj"
version = "1.0.0" # Remember to sync html_root_url in `main.rs`
authors = ["ISSOtm <me@eldred.fr>", "Rangi42"]
edition = "2018"
description = "A command-line program to print out RGBDS object files."
readme = "README.md"
repository = "https://github.com/gbdev/rgbobj"
license = "MIT"
keywords = ["rgbds", "gameboy", "asm", "assembly", "gamedev"]
categories = ["command-line-utilities", "development-tools::debugging", "game-development"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
either = "1.15.0"
paste = "1.0"
patharg = "0.4.1"
rgbds-obj = "0.5.0"
sigpipe = "0.1.3"
termcolor = "1.1.2"
[dependencies.clap]
version = "3.2"
features = [ "cargo", "wrap_help" ]
[profile.release]
lto = true
panic = "abort"