-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
47 lines (42 loc) · 1.45 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
[package]
name = "rust_microservice_starter_kit"
version = "0.1.0"
edition = "2021"
authors = ["benborla@icloud.com"]
description = "A high-performance, type-safe Microservice built with Rust"
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/benborla/rust-microservice-starter-kit/"
homepage = "https://github.com/benborla/rust-microservice-starter-kit/"
keywords = ["microservice", "rust", "web", "api", "open-source"]
categories = ["web-programming", "development-tools"]
default-run = "rust_microservice_starter_kit"
[[bin]]
name = "rust_microservice_starter_kit"
path = "src/main.rs"
[lib]
name = "rust_microservice_starter_kit"
path = "src/lib.rs"
[dependencies]
axum = "0.7.5"
tower-http = { version = "0.5.0", features = ["trace"] }
tokio = { version = "1.35", features = ["full"] }
serde = { version = "1.0", features = ["derive"] }
tracing = "0.1"
tracing-subscriber = "0.3"
thiserror = "1.0"
dotenv = "0.15.0"
sea-orm = { version = "1.0.0-rc.5", features = [ "sqlx-postgres", "runtime-tokio-native-tls", "macros", "debug-print" ] }
axum-macros = "0.4.1"
async-trait = "0.1.81"
openssl = { version = "0.10.66", features = ["vendored"] }
[dev-dependencies]
bytes = "1.0"
futures = "0.3"
mockall = "0.13.0"
tokio-test = "0.4"
hyper = { version = "0.14", features = ["full"] }
tower = "0.4"
serde_json = "1.0"
sea-orm = { version = "1.0.0-rc.5", features = ["sqlx-postgres", "runtime-tokio-native-tls", "macros", "mock"] }
axum = "0.7.5"