Live location tracking and playback for the game "manhunt"
at main 26 lines 710 B view raw
1[package] 2name = "manhunt-testing" 3version = "0.1.0" 4edition = "2024" 5 6[lib] 7name = "manhunt_test_shared" 8path = "src/lib.rs" 9 10[[bin]] 11name = "manhunt-test-daemon" 12path = "src/daemon.rs" 13 14[[bin]] 15name = "manhunt-test-driver" 16path = "src/driver.rs" 17 18[dependencies] 19anyhow = "1.0.101" 20clap = { version = "4.5.59", features = ["derive"] } 21interprocess = { version = "2.3.1", features = ["tokio"] } 22manhunt-logic = { version = "0.1.0", path = "../manhunt-logic" } 23manhunt-transport = { version = "0.1.0", path = "../manhunt-transport" } 24serde = { version = "1.0.228", features = ["derive"] } 25serde_json = "1.0.149" 26tokio = { version = "1.49.0", features = ["macros", "sync", "time", "rt", "test-util", "signal"] }