This repository has been archived by the owner on Apr 14, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
executable file
·55 lines (51 loc) · 1.75 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
53
54
55
# 🐻❄️🌧️ Noelware Telemetry: Telemetry project for Noelware, to capture anonymous data about the running products.
# Copyright 2022 Noelware <team@noelware.org>
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
[package]
name = "telemetry-server"
version = "0.1.0"
edition = "2021"
authors = ["Noel <cutie@floofy.dev>", "Noelware <team@noelware.org>"]
license = "Apache-2.0"
homepage = "https://telemetry.noelware.org"
repository = "https://github.com/Noelware/telemetry-server"
[dependencies]
fern = "0.6.2"
tokio = { version = "1.27.0", features = ["full"] }
log = "0.4.17"
serde = "1.0.160"
toml = "0.7.3"
once_cell = "1.17.1"
sentry = "0.30.0"
ansi_term = "0.12.1"
chrono = { version = "0.4.24", default-features = false, features = ["serde", "std"] }
chrono-tz = "0.8.2"
serde_json = "1.0.96"
anyhow = "1.0.70"
thiserror = "1.0.40"
actix-web = "4.3.1"
futures = { version = "0.3.28", default-features = false, features = ["std"] }
sentry-log = "0.30.0"
sentry-tracing = "0.30.0"
clickhouse-rs = "1.0.0-alpha.1"
rand_core = { version = "0.6.4", features = ["std"] }
async-trait = "0.1.68"
actix-utils = "3.0.1"
regex = "1.7.3"
validator = { version = "0.16.0", features = ["derive"] }
[build-dependencies]
chrono = "0.4.24"
[[bin]]
path = "src/main.rs"
name = "telemetry-server"