-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
50 lines (45 loc) · 1.2 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
[package]
name = "ultimate"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
description.workspace = true
license-file.workspace = true
repository.workspace = true
[lints]
workspace = true
[features]
default = ["tracing-appender"]
tonic = ["dep:tonic", "dep:prost"]
[dependencies]
ultimate-common.workspace = true
thiserror.workspace = true
regex.workspace = true
futures.workspace = true
tokio.workspace = true
async-trait.workspace = true
toml.workspace = true
config.workspace = true
strum.workspace = true
uuid = { workspace = true, optional = true }
ulid = { workspace = true }
log.workspace = true
tracing.workspace = true
# tracing-log.workspace = true
tracing-subscriber.workspace = true
tracing-appender = { workspace = true, optional = true }
rand.workspace = true
argon2.workspace = true
josekit.workspace = true
serde.workspace = true
serde_json.workspace = true
serde_with.workspace = true
serde_repr.workspace = true
utoipa = { workspace = true, optional = true }
tonic = { workspace = true, optional = true }
prost = { workspace = true, optional = true }
[dev-dependencies]
dotenvy.workspace = true
anyhow.workspace = true
[build-dependencies]
prost-build = { workspace = true }