-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
66 lines (58 loc) · 1.59 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[package]
name = "rugby"
version = "0.1.0"
authors = { workspace = true }
edition = "2021"
repository = { workspace = true }
license = { workspace = true }
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
chex = { workspace = true }
rugby-arch = { workspace = true }
rugby-core = { workspace = true }
serde = { workspace = true }
thiserror = { workspace = true }
[dev-dependencies]
png = { workspace = true }
rugby = { workspace = true, features = ["debug"] }
[features]
default = []
debug = ["rugby-core/debug"]
[profile.dev]
opt-level = 3
[workspace]
members = [
"apis/*",
"apps/*",
"arch",
"core",
"crates/*",
"lib/*",
]
[workspace.package]
authors = ["Zakhary Kaplan <[email protected]>"]
repository = "https://github.com/kaplanz/rugby"
license = "MIT OR Apache-2.0"
[workspace.dependencies]
advise = "0.1.0"
anyhow = "1.0.95"
bfmt = { version = "0.1.0", path = "crates/bfmt" }
chex = { version = "0.1.0", path = "crates/chex" }
clap = { version = "4.5.26", features = ["derive"] }
constcat = "0.5.1"
either = "1.13.0"
hexd = { version = "0.1.0", path = "crates/hexd" }
itertools = "0.14.0"
log = "0.4.25"
num = "0.4.3"
png = "0.17.16"
rugby = { version = "0.1.0", path = "." }
rugby-arch = { version = "0.1.0", path = "arch" }
rugby-cfg = { version = "0.1.0", path = "apis/cfg" }
rugby-core = { version = "0.1.0", path = "core" }
rugby-gbd = { version = "0.1.0", path = "apis/gbd" }
serde = { version = "1.0.217", features = ["derive"] }
thiserror = "2.0.11"
toml = "0.8.19"
wrange = { version = "0.1.0", path = "crates/wrange" }
xdir = "0.1.0"