Skip to content

Test Only (CounterSyncd) #3612

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 11 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1,281 changes: 1,281 additions & 0 deletions countersyncd/Cargo.lock

Large diffs are not rendered by default.

61 changes: 61 additions & 0 deletions countersyncd/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
[package]
name = "countersyncd"
version = "0.1.0"
edition = "2021"

[dependencies]
# Async runtime
tokio = { version = "1", features = ["full"] }

# Yaml paser
yaml-rust = "0.4"

# Ge-netlink
neli = { git = "https://github.com/jbaublitz/neli.git", tag = "neli-v0.7.0-rc2" }

# IPFIX parser
ipfix = "0.1.1"
ipfixrw = "0.1.0"
ahash = "0.8.11"
binrw = "0.14.1"
byteorder = "1.5.0"

# Logging
log = "0.4.22"
env_logger = "0.11.6"
# simplelog = "0.12"

rand = "0.8.5"
once_cell = "1.18.0"

# Command line utils
clap = { version = "4", features = ["derive", "cargo", "wrap_help", "unicode", "string", "unstable-styles"] }
color-eyre = "0.6"

# OTEL

# tracing = { version = "0.1", features = ["max_level_debug", "release_max_level_info"] }
# tracing-opentelemetry = "0.26"
# tracing-subscriber = { version = "0.3", features = ["fmt", "env-filter"] }
#
# opentelemetry = { version = "0.25", features = ["trace"] }
# opentelemetry_sdk = { version = "0.25", features = ["rt-tokio"]}
# opentelemetry-semantic-conventions = "0.25"
# opentelemetry-http = "0.25"
# opentelemetry-otlp = { version = "0.25", features = ["tonic"] }
#
# # gRPC and HTTP
# tonic = "0.12"
# tonic-health = "0.12"
# prost = "0.13"
# prost-types = "0.13"
# reqwest = { version = "0.12", default-features = false, features = ["json"] }
# reqwest-middleware = "0.3"
# reqwest-tracing = { version = "0.5", features = ["opentelemetry_0_22"] }
#
# # Other utilities
# once_cell = "1"



swss-common = {git = "https://github.com/sonic-net/sonic-dash-ha.git", branch = "master"}
Loading
Loading