eos0/Cargo.toml

18 lines
227 B
TOML
Raw Normal View History

2024-12-05 18:23:16 +00:00
[package]
2024-12-05 22:58:05 +00:00
name = "kernel"
2024-12-05 18:23:16 +00:00
version = "0.1.0"
edition = "2021"
2024-02-23 03:50:13 +00:00
2024-12-16 16:02:41 +00:00
[workspace]
members = ["crates/*"]
2024-12-05 22:58:05 +00:00
[profile.dev]
panic = "abort"
2024-12-05 23:50:22 +00:00
[profile.release]
panic = "abort"
2024-12-05 18:23:16 +00:00
[dependencies]
2024-12-06 00:04:26 +00:00
contracts = "0.6.3"
2024-12-16 16:02:41 +00:00
ir = { path = "crates/ir" }