-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
59 lines (48 loc) · 1.24 KB
/
Copy pathCargo.toml
File metadata and controls
59 lines (48 loc) · 1.24 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
# Copyright 2024-2026 Christian Mazakas
# Distributed under the Boost Software License, Version 1.0. (See accompanying
# file LICENSE.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
[package]
name = "fiona"
version = "0.1.0"
edition = "2024"
[dependencies]
axboe-liburing = { git = "https://github.com/cmazakas/liburing.git", rev = "f7c527dcabd15c836cacdaff88759e07d1bb0610" }
nix = { version = "0.31.2", features = ["event", "socket", "net"] }
rustls = "0.23.40"
rustls-pki-types = "1.14.1"
slotmap = { version = "1.1.1" }
[features]
sanitizers = ["axboe-liburing/sanitizers"]
[dev-dependencies]
blake2 = "0.10.6"
clap = { version = "4.5.45", features = ["derive"] }
# compio = { version = "0.19.0", features = ["net", "nightly", "time"] }
futures = "0.3.31"
rand = "0.9.2"
rayon = "1.12.0"
tokio = { version = "1.52.1", features = ["full"] }
tokio-util = "0.7.18"
webpki-roots = "1.0.6"
[profile.release-with-debug]
inherits = "release"
debug = "full"
[profile.lto]
inherits = "release"
lto = "thin"
codegen-units = 1
[profile.bench]
inherits = "release"
lto = "thin"
codegen-units = 1
[[bench]]
name = "echo2"
harness = false
[[bench]]
name = "echo_mt"
harness = false
[[bench]]
name = "timer"
harness = false
[[bench]]
name = "ring_msg"
harness = false