-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml.backup
37 lines (32 loc) · 1.02 KB
/
Cargo.toml.backup
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
[package]
name = "consum-api"
version = "0.1.0"
authors = ["Oleksii R <arodionow@gmail.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tokio = { version = "1", features = ["macros", "full"] }
warp = { version = "0.3" }
once_cell = "1.5"
tiberius = { path = "../tiberius_original", version = "0.5", default-features=false, features=["chrono", "tds73", "rust_decimal", "sql-browser-tokio"] }
tokio-util = { version = "0.6", features = ["compat"] }
# pretty_env_logger = "0.4"
log = "0.4"
anyhow = "1"
thiserror = "1"
http-api-problem = { path = "../http-api-problem", version = "0.19", features = ["with-warp"] }
serde = { version = "1.0", features = ["derive"] }
bb8 = "0.7"
async-trait = "0.1"
chrono = { version = "0.4", features = ["serde"] }
fern = "0.6"
percent-encoding = "2.1"
jsonwebtoken = "7.2"
[target.'cfg(windows)'.dependencies]
windows-service = "0.3"
[features]
default = []
run-windows-service = []
[profile.release]
opt-level="s"
lto=true