-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
60 lines (56 loc) · 1.97 KB
/
Copy pathCargo.toml
File metadata and controls
60 lines (56 loc) · 1.97 KB
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
50
51
52
53
54
55
56
57
58
59
60
[package]
name = "inim"
version = "0.1.0"
edition = "2021"
authors = ["Vadim Petrov <vadim@vadimpetrov.com>"]
license = "MIT"
description = "Local event-conditioned BGP analysis system and NOC incident workbench — relates operator-declared network events to externally observed route changes at selected RouteViews and RIPE RIS observer sessions"
readme = "README.md"
repository = "https://github.com/downwithbgp/inim"
homepage = "https://github.com/downwithbgp/inim"
keywords = ["bgp", "routing", "network-events", "routeviews", "observability"]
categories = ["command-line-utilities", "network-programming"]
# Packaging: exclude caches, raw MRT archives, generated event outputs,
# validation/archived runs, and local scratch files. The crate ships only
# source, tests/fixtures (provenance-documented, MIT-compatible), and docs.
# Anchored patterns exclude only the top-level runtime directories: the
# reviewed case-study evidence under case-studies/*/out and
# case-studies/*/pilot/out IS packaged (the deterministic demo and the
# answer-key generator import it).
exclude = [
"/out/",
"/tmp/",
"/cache/",
"run_stderr*.log",
"stderr.log",
"/data/",
"*.sqlite",
"*.sqlite-wal",
"*.sqlite-shm",
"*.db",
]
[dependencies]
clap = { version = "4", features = ["derive"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
chrono = { version = "0.4", features = ["serde"] }
regex = "1"
bgpkit-parser = { version = "=0.19.0", default-features = false, features = ["parser", "local"] }
bgpkit-broker = "0.12"
sha2 = "0.11"
flate2 = "1"
reqwest = { version = "0.13", features = ["blocking"] }
tokio = { version = "1", features = ["macros", "net", "rt", "rt-multi-thread", "signal"] }
rusqlite = { version = "0.40.1", features = ["bundled", "trace"] }
axum = "0.8.9"
askama = "0.16.0"
toml = "0.9"
[dev-dependencies]
tempfile = "3"
tower = { version = "0.5.3", features = ["util"] }
http = "1"
[lib]
path = "src/lib.rs"
[[bin]]
name = "inim"
path = "src/main.rs"