-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
20 lines (18 loc) · 881 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
[package]
name = "checker"
version = "0.1.0"
edition = "2021"
authors = ["Luke Baja-Ricketts", "Dhruv Gramopadhye"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
reqwest = {version = "0.11", default-features = false, features = ["cookies", "json", "rustls-tls"]}
tokio = {version = "1", features = ["full"]}
serde = "1.0"
serde_json = "1.0"
rocket = { git = "https://github.com/SergioBenitez/Rocket.git", default-features = false, features = ["json", "secrets", "uuid"], rev = "677790d6397147f83066a284ee962bc174c555b5" }
tl = "0.7.7"
#diesel = {path = "../diesel/diesel", features = ["uuid","extras", "sqlite"] }
diesel = {version = "2", features = ["uuid","extras", "sqlite"] }
uuid = { version = "0.8", features = ["v4"] }
derive_more = "0.99.0"
libsqlite3-sys = { version = "0.25.2", features = ["bundled"] }