forked from m-rots/a-train
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
52 lines (45 loc) · 1.3 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
[package]
name = "a-train"
version = "0.1.0"
authors = ["Storm Timmermans <[email protected]>"]
edition = "2018"
build = "build.rs"
publish = false
[workspace]
members = ["xtask"]
[dependencies]
anyhow = "1"
async-trait = "0.1.51"
bernard = { git = "https://github.com/m-rots/bernard-rs", branch = "main" }
chrono = "0.4"
clap = "3.0.0-beta.5"
color-eyre = "0.5.11"
eyre = "0.6.5"
futures = "0.3"
reqwest = { version = "0.11", default-features = false, features = [
"json",
"rustls-tls",
] }
serde = { version = "1", features = ["derive"] }
thiserror = "1.0.26"
tokio = { version = "1", features = ["full"] }
toml = "0.5"
tower = { version = "0.4.8", features = ["full"] }
tracing = "0.1"
# Still waiting for https://github.com/tokio-rs/tracing/issues/1309 to be backported.
tracing-subscriber = "0.2"
# Jemalloc for 64-bit MUSL as standard allocator has bad performance.
[target.'cfg(all(target_env = "musl", target_pointer_width = "64"))'.dependencies]
jemallocator = { version = "0.4", package = "tikv-jemallocator" }
[build-dependencies]
# TODO: enable git
vergen = { version = "5", default-features = false, features = ["build"] }
[dev-dependencies]
pretty_assertions = "0.7"
serde_json = "1"
wiremock = "0.5"
[profile.dev]
split-debuginfo = "unpacked"
[profile.release]
lto = true
codegen-units = 1