aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 9cf36a953636bef4c7d7f44d8e30007fc4c54363 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
[package]
name = "tosin"
version = "0.1.0"
authors = ["Melody Horn / boringcactus <melody@boringcactus.com>"]
edition = "2018"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
diesel = { version = "1.4.4", features = ["sqlite"] }
hyper = { version = "0.14", features = ["full"] }
structopt = "0.3.21"
time = "0.2.27"
tokio = { version = "1", features = ["full"] }
tosin-macros = { version = "0.1.0", path = "./tosin-macros" }
warp = "0.3"

[dev-dependencies]
rand = "0.8.3"