-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
41 lines (37 loc) · 941 Bytes
/
Cargo.toml
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
37
38
39
40
41
[package]
name = "fateful"
version = "0.1.0"
edition = "2021"
authors = ["commonkestrel"]
license = "MIT"
build = "build.rs"
rust-version = "1.70.0"
[workspace]
members = ["peripherals/advanced", "peripherals/multi-port", "peripherals/rust-peripheral", "peripherals/screen"]
[dependencies]
async-std = { version="1", features = ["attributes"] }
bitflags = "2.4"
clap = { version = "4.4", features = ["derive"] }
clap-verbosity-flag = "2.1"
clio = { version = "0.3", features = ["clap-parse"] }
colored = "2"
git2 = "0.19"
humantime = "2.1"
lazy-regex = "3.1"
libloading = "0.8"
logos = "0.13"
minifb = { git = "https://github.com/emoon/rust_minifb", rev = "d62b0f5" }
modular-bitfield = "0.11"
once_cell = "1.18"
serialport = "4.3"
shadow-rs = "0.33"
thiserror = "1"
[build-dependencies]
shadow-rs = "0.33"
logos = "0.13"
bitflags = "2.4"
anyhow = "1"
thiserror = "1"
[features]
default = ["http"]
http = ["clio/http", "clio/http-ureq"]