-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
36 lines (33 loc) · 953 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
33
34
35
36
cargo-features = ["codegen-backend"]
[workspace]
members = [
"assyst-cache",
"assyst-common",
"assyst-core",
"assyst-database",
"assyst-flux-iface",
"assyst-gateway",
"assyst-proc-macro",
"assyst-string-fmt",
"assyst-tag",
"assyst-webserver",
]
exclude = ["flux"]
resolver = "2"
[workspace.lints.clippy]
uninlined_format_args = "warn"
redundant_clone = "warn"
too_long_first_doc_paragraph = "allow"
[workspace.dependencies]
anyhow = "1.0.75"
serde = { version = "1.0.123", features = ["derive"] }
tokio = { version = "1.34.0", features = ["full"] }
tracing = "0.1.37"
twilight-gateway = { git = "https://github.com/twilight-rs/twilight" }
twilight-http = { git = "https://github.com/twilight-rs/twilight", features = [
"rustls-ring",
] }
twilight-model = { git = "https://github.com/twilight-rs/twilight" }
twilight-util = { git = "https://github.com/twilight-rs/twilight", features = [
"builder",
] }