27 lines
708 B
TOML
27 lines
708 B
TOML
|
|
[package]
|
||
|
|
name = "user-land"
|
||
|
|
version = "0.1.0"
|
||
|
|
edition = "2021"
|
||
|
|
|
||
|
|
[[bin]]
|
||
|
|
name = "vauban"
|
||
|
|
path = "src/main.rs"
|
||
|
|
|
||
|
|
[build-dependencies]
|
||
|
|
# Pas de dépendances externes : build.rs invoque cargo directement
|
||
|
|
|
||
|
|
[dependencies]
|
||
|
|
aya = { workspace = true }
|
||
|
|
aya-log = { workspace = true }
|
||
|
|
libc = { workspace = true }
|
||
|
|
tokio = { workspace = true }
|
||
|
|
ratatui = { workspace = true }
|
||
|
|
crossterm = { workspace = true }
|
||
|
|
serde = { workspace = true }
|
||
|
|
serde_norway = { workspace = true }
|
||
|
|
serde_json = { workspace = true }
|
||
|
|
chrono = { workspace = true }
|
||
|
|
uuid = { workspace = true }
|
||
|
|
regex = { workspace = true }
|
||
|
|
common-lib = { workspace = true, features = ["user"] }
|