-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
41 lines (35 loc) · 992 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
[package]
name = "tenjin_sdn"
description = "Tenjin is The software-defined networking framework written in Rust, offering high performance and memory safety. It can be used as both a framework and a command line tool."
version = "0.5.0"
authors = ["Nawasan <[email protected]>"]
license = "MIT"
edition = "2021"
readme = "README.md"
repository = "https://github.com/Arikato111/Tenjin"
categories = ["command-line-utilities"]
keywords = ["sdn", "cli", "openflow"]
include = ["src/*"]
[lib]
name = "tenjin"
path = "src/lib.rs"
[[bin]]
name = "tenjin"
path = "src/main.rs"
[dependencies]
byteorder = "1.0.0"
clap = { version = "4.5.13", features = ["derive"], optional = true }
clap_complete = { version = "4.5.23", optional = true }
tokio = { version = "1.40.0", features = [
"rt-multi-thread",
"net",
"macros",
"io-util",
] }
[profile.release]
strip = true
[features]
default = ["full"]
example = []
cli = ["dep:clap", "dep:clap_complete", "example"]
full = ["cli"]