-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
44 lines (39 loc) · 815 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
38
39
40
41
42
43
44
[package]
name = "udpmonster"
version = "0.1.0"
authors = ["Davide Baldo <davide@baldo.me>"]
edition = "2018"
[[bin]]
name = "udpmonster"
path = "src/main.rs"
[[bin]]
name = "udpmonster-ram-stress"
path = "src/ram-stress.rs"
[profile.release]
opt-level = 's'
debug = true
rpath = false
lto = true
debug-assertions = false
codegen-units = 1
panic = 'unwind'
incremental = false
overflow-checks = false
[profile.bench]
opt-level = 3
debug = false
rpath = false
lto = false
debug-assertions = false
codegen-units = 1
incremental = false
overflow-checks = false
[dependencies]
flatbuffers = { git = "file:///home/davide/git/flatbuffers/", ref = "39dd238542369a1d27bff5a32fee5ffd710cf263" }
base64 = "0.11.0"
crc32c = "0.4.0"
lockfree = "0.5.1"
libc = "0.2.66"
easybench = "1.0.0"
byteorder = "1.3.2"
rand = "0.3"