30 lines
No EOL
505 B
TOML
30 lines
No EOL
505 B
TOML
[package]
|
|
name = "matchmaker"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
license = "MIT License"
|
|
|
|
[dependencies]
|
|
# Used by library
|
|
macaddr = "1.0.1"
|
|
log = "0.4"
|
|
actix-web = "4"
|
|
actix-cors = "0.7.0"
|
|
# Used by server runtime
|
|
fern = { optional = true, version = "0.7" }
|
|
juniper = "0.16.1"
|
|
|
|
[dev-dependencies]
|
|
stopwatch = "0.0.7"
|
|
rand = "0.9"
|
|
|
|
[features]
|
|
default = ["client", "server"]
|
|
bin-deps = ["fern"]
|
|
client = []
|
|
server = []
|
|
|
|
[[bin]]
|
|
name = "matchmaker_server"
|
|
path = "src/main.rs"
|
|
required-features = ["server"] |