-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (30 loc) · 915 Bytes
/
Cargo.toml
File metadata and controls
33 lines (30 loc) · 915 Bytes
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
[package]
name = "gtsa"
version = "0.5.2"
authors = ["Mnwa <mihan@panfilov.biz>"]
edition = "2018"
description = "Simple proxy gelf messages to the Sentry."
license="MIT"
keywords = ["proxy", "sentry", "graylog", "gelf"]
categories = ["development-tools"]
readme = "Readme.md"
documentation = "https://mnwa.github.io/gtsa/"
homepage = "https://mnwa.github.io/gtsa/"
repository = "https://github.com/Mnwa/gtsa"
[profile.dev]
opt-level = 0
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
[dependencies]
serde = { version = "1.0", default-features = false, features = ["alloc", "derive"] }
serde_json = {version = "1.0", default-features = false, features = ["alloc"]}
actix = "0.9"
actix-rt = "1.0"
tokio = { version = "0.2", features = ["net"] }
futures = "0.3"
flate2 = "1.0"
scan_fmt = "0.2"
reqwest = { version = "0.10", features = ["json"] }
uuid = { version = "0.8", features = ["serde", "v4"] }