changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > demo / src/crates/service/Cargo.toml

changeset 26: 2015d7277629
author: ellis <ellis@rwest.io>
date: Mon, 05 Jun 2023 19:59:26 -0400
permissions: -rw-r--r--
description: refactor 01
1 [package]
2 name = "demo_service"
3 version = "0.1.0"
4 edition = "2021"
5 [lib]
6 path = "lib.rs"
7 [[bin]]
8 name = "demo-service"
9 path = "main.rs"
10 [[test]]
11 name = "tests"
12 path = "tests.rs"
13 
14 [dependencies]
15 obj = { version = "0.1.0", path = "../obj" }
16 tokio = { version = "1.28.2", features = ["full"] }
17 sqlx = { version = "0.6.3", features = ["runtime-tokio-rustls", "any", "postgres"] }
18 axum = { version = "0.6.18" }
19 tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
20 tracing = "0.1.37"
21