-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
72 lines (64 loc) · 1.63 KB
/
Copy pathCargo.toml
File metadata and controls
72 lines (64 loc) · 1.63 KB
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
[workspace]
resolver = "2"
members = [
"crates/catcast-core",
"crates/catcast-net",
"crates/catcast-proto",
"crates/catc",
"crates/catstage",
"crates/catsocks",
]
[workspace.package]
version = "0.1.0"
edition = "2021"
license = "0BSD"
repository = "https://github.com/baloise/catcast"
rust-version = "1.82"
[workspace.dependencies]
catcast-core = { path = "crates/catcast-core" }
catcast-net = { path = "crates/catcast-net" }
catcast-proto = { path = "crates/catcast-proto" }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_yaml = "0.9"
thiserror = "2"
anyhow = "1"
chrono = { version = "0.4", default-features = false, features = ["clock", "std", "serde"] }
cron = "0.15"
# crypto
chacha20poly1305 = "0.10"
argon2 = "0.5"
rand = "0.8"
base64 = "0.22"
url = "2"
zeroize = "1"
# async / ws
tokio = { version = "1", features = [
"rt-multi-thread",
"io-util",
"net",
"sync",
"time",
"macros",
] }
tokio-tungstenite = { version = "0.29", features = ["rustls-tls-native-roots"] }
rustls = { version = "0.23", default-features = false, features = ["ring", "std", "tls12", "logging"] }
futures-util = "0.3"
# CLI
clap = { version = "4", features = ["derive"] }
toml = "0.9"
directories = "6"
humantime = "2"
[workspace.metadata.release]
shared-version = true
consolidate-commits = true
tag-name = "v{{version}}"
publish = false
allow-branch = ["main"]
pre-release-commit-message = "release {{version}}"
tag-message = "v{{version}}"
[profile.release]
opt-level = "z"
lto = true
codegen-units = 1
strip = true