Crates.io | zeromq-src |
lib.rs | zeromq-src |
version | |
source | src |
created_at | 2019-05-20 14:57:00.139756 |
updated_at | 2024-10-17 17:22:56.513229 |
description | Source code and logic to build ZeroMQ from source |
homepage | |
repository | https://github.com/jean-airoldie/zeromq-src-rs |
max_upload_size | |
id | 135618 |
Cargo.toml error: | TOML parse error at line 18, column 1 | 18 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include` |
size | 0 |
zeromq-src-rs - Source code and logic to build
libzmq
from source
This crate is intended to be consumed by a sys
crate.
See testcrate-static
for a usage example.
DEP_ZMQ_INCLUDE
is path to the include directory.DEP_ZMQ_LIB
is the path to the lib directory.DEP_ZMQ_OUT
is the path to the out directory (root).master
branch uses the libzmq
latest_release
branch and is
considered a stable branch. When a stable release is published, the version
will take the form of VERSION+BUILD_METADATA
.While libzmq
is license under LGPL
, it has a linking exception, which means that this crate does not need to conform to the usual LGPL
conditions. Indeed this crate does not modify the source code in any way and simply allows linking to libzmq
. To quote from the zeromq website
:
ZeroMQ is safe for use in close-source applications. The LGPL share-alike terms do not apply to applications built on top of ZeroMQ. You do not need a commercial license. The LGPL applies to ZeroMQ's own source code, not your applications. Many commercial applications use ZeroMQ.
Thus this project is effectively licensed under either of
at your option.
openssl-src
Unless you explicitly state otherwise, any contribution intentionally submitted
for inclusion in zeromq-src-rs
by you, as defined in the Apache-2.0 license, shall be
dual licensed as above, without any additional terms or conditions.