forked from passcod/cni-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
35 lines (29 loc) · 1.08 KB
/
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
[package]
name = "host-routes"
version = "0.3.0"
publish = false
authors = ["Félix Saparelli <[email protected]>"]
license = "Apache-2.0 OR MIT"
description = "CNI post-processing plugin to add routes to the host"
keywords = ["cni", "cni-plugin", "routing", "jq"]
documentation = "https://github.com/passcod/cni-plugins/tree/main/host-routes"
homepage = "https://github.com/passcod/cni-plugins"
repository = "https://github.com/passcod/cni-plugins"
edition = "2018"
[dependencies]
async-std = { version = "1.9.0", features = ["unstable"] } # unstable=spawn_blocking
cni-plugin = { path = "../plugin" }
futures = "0.3.13"
ipnetwork = "0.17.0"
jq-rs = { version = "0.4.1", features = ["bundled"] }
log = { version = "0.4.14", features = ["release_max_level_debug"] }
serde = { version = "1.0.123", features = ["derive"] }
serde_json = "1.0.62"
# waits on: https://github.com/little-dude/netlink/issues/149
[dependencies.rtnetlink]
version = "0.7.0"
git = "https://github.com/little-dude/netlink"
default-features = false
features = ["smol_socket"]
[features]
release-logs = ["cni-plugin/release-logs"]