aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 5e0cf6f25d355bb28c92fdf740e7f0e57f6af0e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
[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]
barrel = { version = "0.6.5" }
chrono = { version = "0.4", features = ["clock"] }
diesel = { version = "1.4.4", features = ["chrono"] }
hyper = { version = "0.14", features = ["full"] }
libsqlite3-sys = { version = "0.22.2", features = ["bundled-windows"], optional = true }
quote = "1.0"
structopt = "0.3.21"
syn = { version = "1.0", features = ["full", "extra-traits"] }
tokio = { version = "1", features = ["full"] }
tosin-macros = { version = "0.1.0", path = "./tosin-macros" }
warp = "0.3"

[dev-dependencies]
rand = "0.8.3"

[features]
sqlite = ["barrel/sqlite3", "diesel/sqlite", "libsqlite3-sys"]