-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
49 lines (45 loc) · 1.18 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
[workspace]
members = [
"insim_core",
"insim",
"insim_pth",
"insim_smx",
"examples/*",
]
# Only check / build main crates by default (check all with `--workspace`)
default-members = ["insim", "insim_*"]
resolver = "2"
[workspace.package]
version = "3.0.0-unreleased"
authors = ["Karl Southern <karl@theangryangel.co.uk>"]
edition = "2021"
rust-version = "1.75"
repository = "https://github.com/theangryangel/insim.rs"
license = "MIT"
homepage = "https://github.com/theangryangel/insim.rs"
[workspace.lints.rust]
unsafe_code = "deny"
missing_docs = "deny"
unused_crate_dependencies = "deny"
unused_results = "deny"
missing_debug_implementations = "deny"
[workspace.lints.rustdoc]
broken_intra_doc_links = "deny"
[workspace.dependencies]
binrw = "0.14.0"
bitflags = "2.4.0"
bytes = "1.4.0"
clap = { version = "4.2" }
encoding_rs = { version = "0.8.32" }
from_variants = "1.0.2"
futures-util = { version = "0.3.28" }
if_chain = "1.0.2"
indexmap = "2.1.0"
itertools = { version = "0.13.0" }
serde = { version = "1.0.188" }
thiserror = "1.0.40"
tokio = { version = "1.11.0" }
tokio-test = "0.4.0"
tokio-tungstenite = { version = "0.24.0" }
tracing = "0.1.37"
tracing-subscriber = { version = "0.3.17" }