golang-github-casbin-govaluate 1.1.1-2 source package in Ubuntu

Changelog

golang-github-casbin-govaluate (1.1.1-2) unstable; urgency=medium

  * Source-only upload for migration

 -- Mathias Gibbens <email address hidden>  Mon, 12 Feb 2024 21:31:35 +0000

Upload details

Uploaded by:
Debian Go Packaging Team
Uploaded to:
Sid
Original maintainer:
Debian Go Packaging Team
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe misc
Noble release universe misc

Builds

Noble: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-casbin-govaluate_1.1.1-2.dsc 2.2 KiB 9729c086bf7b4e72d13c7d23da498501a2eb79049ca62a2b2fc3a2ae7d861fa7
golang-github-casbin-govaluate_1.1.1.orig.tar.gz 43.6 KiB e4e1f385cab68982cd5e28de2fcea9462e4a5bb2f0273fb2db0eb45f65d8f555
golang-github-casbin-govaluate_1.1.1-2.debian.tar.xz 3.2 KiB c87204140c2c1a639be7d95530e4ca488e30b2a5e4413a3f55ce6162dcad7e35

No changes file available.

Binary packages built by this source

golang-github-casbin-govaluate-dev: Arbitrary expression evaluation for golang (library)

 Provides support for evaluating arbitrary C-like artithmetic/string
 expressions.
 .
 Sometimes, you can't know ahead-of-time what an expression will look
 like, or you want those expressions to be configurable. Perhaps
 you've got a set of data running through your application, and you
 want to allow your users to specify some validations to run on it
 before committing it to a database. Or maybe you've written a
 monitoring framework which is capable of gathering a bunch of
 metrics, when evaluating a few expressions to see if any metrics
 should be alerted upon, but the conditions for alerting are different
 for each monitor.
 .
 A lot of people wind up writing their own half-baked style of
 evaluation language that fits their needs, but isn't complete. Or they
 wind up baking the expression into the actual executable, even if
 they know it's subject to change. These strategies may work, but they
 take time to implement, time for users to learn, and induce technical
 debt as requirements change. This library is meant to cover all the
 normal C-like expressions, so that you don't have to reinvent one of
 the oldest wheels on a computer.
 .
 This is a fork of github.com/Knetic/govaluate, maintained by Casbin.