Merge pull request #2 from smrpn/badges

ft: Add GitHub Actions CI badge, code coverage badge and semantic-release
tree: a443d5c382ab7fe9d6cc507eabe97ae469caca7a
  1. .github/
  2. examples/
  3. src/
  4. tests/
  5. .gitignore
  6. Cargo.lock
  7. Cargo.toml
  8. LICENSE
  9. README.md
README.md

json-adapter

CI codecov

Json Adapter is a json adapter for Casbin-rs. With this library, Casbin can load policy from json format file or save policy into it with fully asynchronous support.

Dependency

Add following to Cargo.toml

json-adapter = { version = "0.1.0", features = "runtime-async-std" }
async-std = "1.6.4"

for using tokio

json-adapter = { version = "0.1.0", features = "runtime-tokio" }
tokio = "1.2.0"

Examples

let adapter = JsonAdapter::new("examples/rbac_policy.json");
let e = Enforcer::new(m, adapter).await.unwrap();

for policy file configuration, please refer to example