-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
25 lines (23 loc) · 798 Bytes
/
Cargo.toml
File metadata and controls
25 lines (23 loc) · 798 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
[package]
name = "tamara"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
chrono = "0.4.22"
clap = { version = "3.2.21", features = ["derive"] }
env_logger = "0.9.0"
futures = "0.3.24"
lazy_static = "1.4.0"
libc = "0.2.132"
log = "0.4.17"
regex = "1.6.0"
reqwest = { version = "0.11.12", features = ["json"] }
serde = { version = "1.0.144", features = ["derive"] }
serde_json = "1.0.86"
serde_yaml = "0.9.13"
socket2 = { version = "0.4.7", features = ["all"] }
sqlx = { version = "0.6", features = ["runtime-tokio-native-tls", "postgres", "all-types", "uuid", "chrono"] }
thiserror = "1.0.35"
tokio = { version = "1", features = ["full"] }
uuid = { version = "1.1.2", features = ["v4", "serde"] }