-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (30 loc) · 791 Bytes
/
Copy pathCargo.toml
File metadata and controls
36 lines (30 loc) · 791 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
31
32
33
34
35
36
[package]
name = "faucon"
version = "0.1.0"
authors = ["Valentin B. <valentin.be@protonmail.com>"]
description = "A comprehensive tooling suite for the NVIDIA Falcon microprocessors"
license = "Apache-2.0/MIT"
readme = "README.md"
homepage = "https://github.com/vbe0201/faucon"
edition = "2018"
[workspace]
members = ["faucon-asm", "faucon-asm-derive", "faucon-emu"]
[dependencies]
faucon-asm = { path = "faucon-asm" }
faucon-emu = { path = "faucon-emu" }
paste = "1.0.0"
nom = "6.1"
toml = "0.5"
color-eyre = "0.5.2"
rustyline = "6.2.0"
rustyline-derive = "0.3.1"
owo-colors = "1.1.3"
[dependencies.clap]
version = "2.33"
features = ["yaml"]
[dependencies.serde]
version = "1.0"
features = ["derive"]
# Faster backtraces on debug profile
[profile.dev.package.backtrace]
opt-level = 3