-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (23 loc) · 966 Bytes
/
Cargo.toml
File metadata and controls
26 lines (23 loc) · 966 Bytes
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 = "jubako"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
chrono = { version = "0.4.31", features = ["serde"] }
clap = { version = "4.4.14", features = ["derive"] }
diesel = { version = "2.1.4", features = ["chrono", "postgres", "r2d2", "uuid"] }
futures = "0.3.30"
http = "0.2.0"
prism_client = { git = "https://github.com/kraemahz/prism.git", branch = "main" }
reqwest = { version = "0.11.23", features = ["json", "rustls-tls"] }
serde = "1.0.193"
serde_json = "1.0.110"
subseq_util = { git = "https://github.com/kraemahz/subseq_util.git", branch = "main" }
tokio = { version = "1.34.0", features = ["full"] }
tracing = "0.1.40"
uuid = { version = "1.6.1", features = ["serde", "v4"] }
warp = { version = "0.3.6", features = ["tls"] }
warp-sessions = "1.0.19"
[dev-dependencies]
diesel_migrations = { version = "2.1.0", features = ["postgres"] }