Skip to content

Commit

Permalink
Release v3.0.1
Browse files Browse the repository at this point in the history
Signed-off-by: Siddharth Chandrasekaran <[email protected]>
  • Loading branch information
sidcha committed Feb 20, 2024
1 parent fa787cb commit 20df39f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion libosdp-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "libosdp-sys"
version = "0.1.5"
version = "3.0.1"
edition = "2021"
authors = ["Siddharth Chandrasekaran <[email protected]>"]
description = "Sys crate for https://github.com/goToMain/libosdp"
Expand Down
2 changes: 1 addition & 1 deletion libosdp-sys/vendor
Submodule vendor updated 74 files
+1 −1 .editorconfig
+1 −0 .github/FUNDING.yml
+0 −25 .github/workflows/build-ci.yml
+0 −31 .github/workflows/publish-crate-libosdp.yml
+48 −18 .github/workflows/publish-pypi.yml
+37 −0 CHANGELOG
+3 −3 CMakeLists.txt
+2 −2 Makefile
+19 −7 README.md
+4 −0 configure.sh
+ doc/_static/img/wireshark.png
+55 −4 doc/libosdp/debugging.rst
+0 −0 examples/c/CMakeLists.txt
+1 −2 examples/c/README.md
+0 −0 examples/c/cp_app.c
+0 −0 examples/c/pd_app.c
+0 −0 examples/cpp/CMakeLists.txt
+0 −0 examples/cpp/Makefile
+0 −0 examples/cpp/cp_app.cpp
+0 −0 examples/cpp/pd_app.cpp
+7 −7 examples/python/cp_app.py
+7 −6 examples/python/pd_app.py
+1 −0 examples/rust/README.md
+211 −0 misc/osdp_dissector.lua
+0 −28 osdpctl/Cargo.toml
+0 −7 osdpctl/README.md
+0 −15 osdpctl/config/cp-multiple-pd.cfg
+0 −9 osdpctl/config/cp-single-pd.cfg
+0 −16 osdpctl/config/pd-0.cfg
+0 −16 osdpctl/config/pd-1.cfg
+0 −303 osdpctl/src/config.rs
+0 −56 osdpctl/src/cp.rs
+0 −25 osdpctl/src/daemonize.rs
+0 −212 osdpctl/src/main.rs
+0 −74 osdpctl/src/pd.rs
+4 −4 python/README.md
+19 −7 python/setup.py
+0 −16 rust/.gitignore
+0 −33 rust/Cargo.toml
+0 −60 rust/README.md
+0 −4 rust/config.toml
+0 −36 rust/examples/cp.rs
+0 −42 rust/examples/pd.rs
+0 −66 rust/src/channel/memory_channel.rs
+0 −220 rust/src/channel/mod.rs
+0 −82 rust/src/channel/unix_channel.rs
+0 −212 rust/src/cp.rs
+0 −167 rust/src/file.rs
+0 −183 rust/src/lib.rs
+0 −194 rust/src/pd.rs
+0 −662 rust/src/types/commands.rs
+0 −464 rust/src/types/events.rs
+0 −72 rust/src/types/mod.rs
+0 −377 rust/src/types/pdcap.rs
+0 −91 rust/src/types/pdid.rs
+0 −112 rust/src/types/pdinfo.rs
+0 −70 rust/tests/commands.rs
+0 −128 rust/tests/common/device.rs
+0 −15 rust/tests/common/mod.rs
+0 −99 rust/tests/common/threadbus.rs
+0 −1 samples/rust/README.md
+1 −42 scripts/make-release.sh
+13 −0 src/CMakeLists.txt
+0 −2 src/osdp_common.c
+11 −5 src/osdp_common.h
+1 −0 src/osdp_config.h.in
+18 −16 src/osdp_cp.c
+5 −5 src/osdp_file.h
+54 −0 src/osdp_pcap.c
+41 −0 src/osdp_pcap.h
+13 −15 src/osdp_pd.c
+68 −30 src/osdp_phy.c
+1 −1 tests/unit-tests/test-file.c
+1 −1 utils

0 comments on commit 20df39f

Please sign in to comment.