-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
55 lines (43 loc) · 1.57 KB
/
Cargo.toml
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[package]
name = "api-server"
version = "0.2.1"
edition = "2021"
#
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
#
# Update dependencies using command
# rm ./Cargo.lock && cargo clean && cargo update
#
[dependencies]
log = "^0.4"
env_logger = "^0.11"
#
# date & time
chrono = { version = "^0.4", features = ["serde"] }
#
#
testing = { git = "https://github.com/a-givertzman/rust-testing.git" }
# testing = { git = "https://github.com/a-givertzman/rust-testing.git", tag = "0.1.2" }
debugging = { git = "https://github.com/a-givertzman/rust-debuging.git", tag = "0.0.1" }
api-tools = { git = "https://github.com/a-givertzman/rust-api-tools.git", tag = "0.2.0" }
# api-tools = { path = "../api-tools/" }
rusqlite = { version = "^0.32", features = ["bundled"] }
postgres = { version = "^0.19", features = ["with-chrono-0_4", "with-serde_json-1"] }
# [features]
# with-bit-vec-0_6 = ["tokio-postgres/with-bit-vec-0_6"]
# with-chrono-0_4 = ["tokio-postgres/with-chrono-0_4"]
# with-eui48-0_4 = ["tokio-postgres/with-eui48-0_4"]
# with-geo-types-0_4 = ["tokio-postgres/with-geo-types-0_4"]
# with-serde_json-1 = ["tokio-postgres/with-serde_json-1"]
# with-uuid-0_8 = ["tokio-postgres/with-uuid-0_8"]
serde_yaml = "^0.9"
serde = { version = "^1.0", features = ["derive"] }
serde_json = "^1.0"
serde_with = "^3.0"
yaml-rust = "^0.4"
linked-hash-map = "^0.5"
bytes = "^1.8"
rust_decimal = { version = "^1.32", features = [ "tokio-pg" ] }
rand = "^0.8"
indexmap = { version = "^2.1", features = ["serde"] }
clap = { version = "^4.5", features = ["derive"] }