-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathCargo.toml
37 lines (34 loc) · 884 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
37
[package]
name = "aeron-rs"
version = "0.1.8"
authors = [
"Denis Komissarov <denisxor@gmail.com>",
"Kirill Karbushev <kiriosk@yandex.ru>",
"Alexander Ostrovskiy <alexander.ostrovskiy@gmail.com>",
"Alexander Meshcheriakov <freecoder.xx@gmail.com>",
]
license = "Apache-2.0"
description = "Aeron client library - fast messaging over UDP on Rust"
readme = "README.md"
repository = "https://github.com/UnitedTraders/aeron-rs"
edition = "2021"
[dependencies]
thiserror = "2.0"
cache_line_size="1.0"
num-traits="0.2"
lazy_static = "1.5"
memmap = "0.7"
rand = "0.8"
nix = { version = "0.29", features = ['fs'] }
ctrlc = "3.4"
log = "0.4"
pretty_env_logger = "0.5"
galvanic-assert = "0.8"
chrono = "0.4"
memoffset = "0.9"
[dev-dependencies]
tempfile = "3.15"
hdrhistogram = "7.5"
clap = { version = "4.5", features = ["derive"] }
[build-dependencies]
rustc_version = "0.4"