-
Notifications
You must be signed in to change notification settings - Fork 8
/
Cargo.toml
32 lines (28 loc) · 943 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
[package]
name = "slog-misc"
version = "0.1.0"
authors = ["Dawid Ciężarkiewicz <dpc@dpc.pw>"]
[profile.release]
opt-level = 3
debug = true
lto = true
debug-assertions = false
[profile.bench]
opt-level = 3
debug = true
lto = true
debug-assertions = false
[dependencies]
slog = { git = "https://github.com/slog-rs/slog" }
slog-async = { git = "https://github.com/slog-rs/async" }
slog-json = { git = "https://github.com/slog-rs/json" }
slog-term = { git = "https://github.com/slog-rs/term" }
slog-scope = { git = "https://github.com/slog-rs/scope" }
slog-bunyan = { git = "https://github.com/slog-rs/bunyan" }
slog-atomic = { git = "https://github.com/slog-rs/atomic" }
slog-stdlog = { git = "https://github.com/slog-rs/stdlog" }
slog-syslog = { git = "https://github.com/slog-rs/syslog" }
log = "0.3.8"
[replace]
"slog:2.0.6" = { git = "https://github.com/slog-rs/slog" }
"slog-scope:4.0.0" = { git = "https://github.com/slog-rs/scope" }