17 lines
374 B
TOML
17 lines
374 B
TOML
[package]
|
|
name = "lox-server"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
hyper = "0.13"
|
|
tokio = { version = "0.2", features = ["macros", "signal"] }
|
|
|
|
serde = "1"
|
|
serde_with = "1.9.1"
|
|
serde_json = "1.0.87"
|
|
|
|
lox = { git = "https://git-crysp.uwaterloo.ca/iang/lox.git" }
|