Skip to content

Commit

Permalink
chore(deps): Update cedar submodule
Browse files Browse the repository at this point in the history
  • Loading branch information
dnys1 committed May 5, 2024
1 parent 130a3eb commit 8dac651
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 22 deletions.
16 changes: 8 additions & 8 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 0 additions & 13 deletions packages/cedar_ffi/src/src/c_api/store.rs
Original file line number Diff line number Diff line change
Expand Up @@ -151,19 +151,6 @@ pub extern "C" fn cedar_deinit(store: *mut CedarStore) {
)
}

#[derive(Debug)]
#[repr(C)]
pub struct CCedarPolicy {
policy: *const c_char,
}

#[derive(Debug)]
#[repr(C)]
pub struct CCedarPolicySet {
policies_len: usize,
policies: *const *const c_char,
}

/// Performs a Cedar authorization check.
///
/// This must be called after [cedar_init] has been called.
Expand Down
2 changes: 1 addition & 1 deletion packages/cedar_ffi/third_party/cedar
Submodule cedar updated 51 files
+11 −0 .github/dependabot.yml
+25 −12 .github/workflows/build_downstream_deps.yml
+1 −1 NOTICE
+11 −2 cedar-policy-cli/CHANGELOG.md
+4 −4 cedar-policy-cli/Cargo.toml
+1 −1 cedar-policy-cli/src/lib.rs
+2 −2 cedar-policy-core/Cargo.toml
+23 −44 cedar-policy-core/src/ast/expr.rs
+0 −3 cedar-policy-core/src/ast/expr_iterator.rs
+27 −0 cedar-policy-core/src/ast/name.rs
+6 −0 cedar-policy-core/src/ast/ops.rs
+98 −101 cedar-policy-core/src/ast/policy.rs
+7 −8 cedar-policy-core/src/ast/restricted_expr.rs
+0 −1 cedar-policy-core/src/ast/value.rs
+329 −66 cedar-policy-core/src/entities.rs
+3 −0 cedar-policy-core/src/entities/json/err.rs
+4 −0 cedar-policy-core/src/entities/json/value.rs
+11 −19 cedar-policy-core/src/est.rs
+2 −2 cedar-policy-core/src/est/err.rs
+9 −24 cedar-policy-core/src/est/expr.rs
+25 −25 cedar-policy-core/src/evaluator.rs
+1 −10 cedar-policy-core/src/evaluator/err.rs
+143 −67 cedar-policy-core/src/parser.rs
+781 −494 cedar-policy-core/src/parser/cst_to_ast.rs
+110 −45 cedar-policy-core/src/parser/err.rs
+4 −1 cedar-policy-core/src/parser/text_to_cst.rs
+222 −97 cedar-policy-core/src/test_utils.rs
+0 −1 cedar-policy-core/src/transitive_closure.rs
+4 −4 cedar-policy-formatter/Cargo.toml
+3 −3 cedar-policy-validator/Cargo.toml
+1 −0 cedar-policy-validator/src/err.rs
+3 −3 cedar-policy-validator/src/human_schema/ast.rs
+46 −18 cedar-policy-validator/src/human_schema/err.rs
+32 −25 cedar-policy-validator/src/human_schema/fmt.rs
+17 −5 cedar-policy-validator/src/human_schema/grammar.lalrpop
+10 −5 cedar-policy-validator/src/human_schema/parser.rs
+91 −2 cedar-policy-validator/src/human_schema/test.rs
+37 −7 cedar-policy-validator/src/human_schema/to_json_schema.rs
+4 −0 cedar-policy-validator/src/schema/namespace_def.rs
+37 −0 cedar-policy-validator/src/schema_file_format.rs
+10 −41 cedar-policy-validator/src/typecheck.rs
+2 −2 cedar-policy-validator/src/typecheck/test_expr.rs
+154 −1 cedar-policy-validator/src/typecheck/test_namespace.rs
+2 −2 cedar-policy-validator/src/typecheck/test_type_annotation.rs
+95 −153 cedar-policy-validator/src/types.rs
+41 −1 cedar-policy/CHANGELOG.md
+4 −4 cedar-policy/Cargo.toml
+7 −10 cedar-policy/src/api.rs
+6 −9 cedar-policy/src/integration_testing.rs
+2 −2 cedar-policy/src/prop_test_policy_set.rs
+45 −6 cedar-policy/src/tests.rs

0 comments on commit 8dac651

Please sign in to comment.