-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
33 lines (30 loc) · 904 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
[package]
name = "netgrasp"
version = "0.11.0"
authors = ["Jeremy Andrews <[email protected]>"]
edition = "2021"
[workspace]
members = [".", "netgrasp_entity", "netgrasp_migration"]
[dependencies]
netgrasp_entity = { path = "netgrasp_entity" }
netgrasp_migration = { path = "netgrasp_migration" }
anyhow = "1.0"
async-trait = "0.1"
arp-toolkit = "0.3"
chrono = "^0.4"
clap = { version = "4.3", features = ["derive"] }
dns-lookup = "2.0"
figment = { version = "0.10", features = ["env", "toml"] }
if-addrs = "0.10"
log = "0.4"
mac_oui = { version = "0.4", features = ["with-db"] }
async-once-cell = "0.5"
regex = "1"
reqwest = { version = "0.11", features = ["json"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
simplelog = "0.12"
tokio = { version = "1", features = ["full"] }
[dependencies.sea-orm]
version = "^0"
features = ["sqlx-sqlite", "runtime-tokio-rustls"]