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
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT license.
[]
= "demikernel-dpdk-rs"
= "0.0.1"
= ["Microsoft Corporation"]
= "2021"
= "Rust Bindings for Libdpdk"
= "https://aka.ms/demikernel"
= "https://github.com/demikernel/demikernel"
= "MIT"
[]
= "1.0.0"
[]
= "1.0.86"
= "0.69.4"
= "1.1.10"
[]
= ["mlx5"]
= []
= []
# Build profile used for releases.
[]
= 3 # Enable all compiler optimizations.
= false # Do not include any debug info in the binary.
= false # Do not include any debug assertions in the binary.
= false # Do not check for overflows at runtime.
= "fat" # Perform link time optimizations across all dependencies (overridden).
= "abort" # Terminate the process upon panic (overridden).
= false # Disable incremental compilation.
= 1 # Produce a single code generation unit (overridden).
= false # Disable runtime search path.
# Build profile used for development and debugging.
[]
= 0 # Disable all compiler optimizations.
= true # Output full debug info in the binary.
= true # Include debug assertions in the binary.
= true # Check for overflows at runtime.
= "off" # Disable link time optimization (overridden).
= 'unwind' # Unwind the stack upon panic.
= true # Incremental build.
= 256 # Produce multiple code generation units.
= false # Disable runtime search path.