ef3735764a
Versioning scheme: MAJOR.MINOR.PATCH where MAJOR matches the wire protocol version (no cross-major compat), MINOR is the main change indicator, PATCH generally unused. - gatunad: Cargo.toml version 2.0.0 (clap --version picks it up) - gatuna: csproj Version 2.0.0, shown in form title + tray tooltip - app.manifest: assemblyIdentity version 2.0.0.0 - Frame version rejection already in place (both sides reject != 2) - README: document versioning scheme
18 lines
365 B
TOML
18 lines
365 B
TOML
[package]
|
|
name = "gatuna"
|
|
version = "2.0.0"
|
|
edition = "2021"
|
|
license = "CC0-1.0"
|
|
|
|
[[bin]]
|
|
name = "gatunad"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
libc = "0.2"
|
|
tokio = { version = "1", features = ["rt-multi-thread", "macros", "net", "sync", "io-util"] }
|
|
clap = { version = "4", features = ["derive"] }
|
|
pnet_datalink = "0.35"
|
|
tracing = "0.1"
|
|
tracing-subscriber = "0.3"
|