-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
32 lines (27 loc) · 893 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
[package]
name = "netbox2netshot"
version = "0.1.12"
authors = ["Mathieu Poussin <[email protected]>"]
edition = "2018"
description = "Synchronization tool between netbox and netshot"
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/scaleway/netbox2netshot"
keywords = ["netbox", "netshot", "synchronization", "network"]
categories = ["command-line-utilities"]
[dependencies]
serde = { version = "1.0.125", features = ["derive"]}
structopt = "0.3"
log = "0.4"
flexi_logger = "0.19"
reqwest = { version = "0.11", features = ["json", "native-tls", "blocking"]}
anyhow = { version = "1.0", features = ["backtrace"]}
[dev-dependencies]
mockito = "0.30"
ctor = "0.1.20"
[package.metadata.rpm]
package = "netbox2netshot"
[package.metadata.rpm.cargo]
buildflags = ["--release"]
[package.metadata.rpm.targets]
netbox2netshot = { path = "/usr/bin/netbox2netshot" }