-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
43 lines (40 loc) · 1.18 KB
/
Cargo.toml
File metadata and controls
43 lines (40 loc) · 1.18 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
[workspace]
members = ["crates/ktls-core", "crates/ktls-stream", "crates/ktls-tests"]
default-members = ["crates/ktls-core"]
resolver = "2"
[workspace.package]
edition = "2021"
rust-version = "1.83.0"
authors = ["Hantong Chen <cxwdyx620@gmail.com>"]
categories = ["network-programming"]
keywords = ["ktls", "linux", "tls"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/hanyu-dev/ktls"
[workspace.dependencies]
bitfield-struct = "0.12.1"
libc = "0.2.177"
log = "0.4.28"
nix = "0.30.1"
pin-project-lite = "0.2.16"
rustls = { version = "0.23.27", default-features = false }
tokio = "1.48"
tracing = "0.1.41"
zeroize = "1.8"
zeroize_derive = "1.4"
[workspace.lints]
rust.unsafe_code = "warn"
rust.unused_must_use = "warn"
rust.elided_lifetimes_in_paths = "warn"
rust.missing_docs = "warn"
rust.trivial_casts = "warn"
rust.trivial_numeric_casts = "warn"
rust.unreachable_pub = "warn"
rust.unused_import_braces = "warn"
rust.unused_extern_crates = "warn"
rust.unused_qualifications = "warn"
clippy.alloc_instead_of_core = "warn"
clippy.exhaustive_enums = "warn"
clippy.exhaustive_structs = "warn"
clippy.manual_let_else = "warn"
clippy.use_self = "warn"
clippy.upper_case_acronyms = "warn"