-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
42 lines (37 loc) · 1023 Bytes
/
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
[package]
name = "truck-billing"
version = "0.1.0"
edition = "2021"
[workspace]
members = ["."]
[dependencies]
poem = "1.3.41"
poem-openapi = { version = "1.2", features = ["swagger-ui"] }
tokio = { version = "1.21.0", features = ["full", "tracing"] }
console-subscriber = "0.1.8"
tracing = "0.1"
tracing-subscriber = "0.3.15"
tracing-appender = "0.2"
lazy_static = "1.4.0"
dotenv = "0.15.0"
serde = "1.0.144"
chrono = "0.4.22"
rust_decimal = "1.26.1"
rust_decimal_macros = "1.26"
async-trait = "0.1.57"
reqwest = { version = "0.11", features = ["json"] }
[dependencies.sea-orm] # remove this line in your own project
version = "^0.9.0" # sea-orm version
features = [
"debug-print",
"runtime-tokio-native-tls",
"sqlx-postgres",
"macros"
]
[dependencies.uuid]
version = "1.1.2"
features = [
"v4", # Lets you generate random UUIDs
"fast-rng", # Use a faster (but still sufficiently random) RNG
"macro-diagnostics", # Enable better diagnostics for compile-time UUIDs
]