-
Notifications
You must be signed in to change notification settings - Fork 49
/
Cargo.toml
97 lines (91 loc) · 2.36 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
[workspace]
resolver = "2"
members = [
"syncserver-common",
"syncserver-db-common",
"syncserver-settings",
"syncstorage-db",
"syncstorage-db-common",
"syncstorage-mysql",
"syncstorage-settings",
"syncstorage-spanner",
"tokenserver-auth",
"tokenserver-common",
"tokenserver-db",
"tokenserver-settings",
"syncserver",
]
default-members = ["syncserver"]
[workspace.package]
version = "0.17.12"
authors = [
"Ben Bangert <[email protected]>",
"Phil Jenvey <[email protected]>",
"Mozilla Services Engineering <[email protected]>",
]
edition = "2021"
license = "MPL-2.0"
[workspace.dependencies]
actix-web = "4"
docopt = "1.1"
base64 = "0.22"
# Updating to 2.* requires changes to the Connection code for logging.
# (Adding an `instrumentation()` and `set_instrumentation()` method.)
# More investigation required.
diesel = "1.4"
diesel_migrations = "1.4"
diesel_logger = "0.1"
cadence = "1.3"
backtrace = "0.3"
chrono = "0.4"
deadpool = { version = "0.12", features = ["rt_tokio_1"] }
env_logger = "0.11"
futures = { version = "0.3", features = ["compat"] }
futures-util = { version = "0.3", features = [
"async-await",
"compat",
"sink",
"io",
] }
hex = "0.4"
hostname = "0.4"
hkdf = "0.12"
hmac = "0.12"
http = "1.1"
jsonwebtoken = { version = "9.2", default-features = false }
lazy_static = "1.4"
protobuf = "=2.25.2" # pin to 2.25.2 to prevent side updating
rand = "0.8"
regex = "1.4"
reqwest = { version = "0.12", default-features = false, features = [
"rustls-tls",
] }
# rev 1b65b5c includes https://github.com/getsentry/sentry-rust/pull/701
# TODO: bump to 0.35 as soon as it's available
sentry = { version = "0.34", git = "https://github.com/getsentry/sentry-rust", rev = "1b65b5c", default-features = false, features = [
"curl",
"backtrace",
"contexts",
"debug-images",
] }
sentry-backtrace = { version = "0.34", git = "https://github.com/getsentry/sentry-rust", rev = "1b65b5c" }
serde = "1.0"
serde_derive = "1.0"
serde_json = { version = "1.0", features = ["arbitrary_precision"] }
sha2 = "0.10"
slog = { version = "2.5", features = [
"max_level_trace",
"release_max_level_info",
"dynamic-keys",
] }
slog-async = "2.5"
slog-envlogger = "2.2.0"
slog-mozlog-json = "0.1"
slog-scope = "4.3"
slog-stdlog = "4.1"
slog-term = "2.6"
tokio = "1"
thiserror = "1.0.26"
[profile.release]
# Enables line numbers in Sentry reporting
debug = 1