Make AuthorizationService client available in Rust

Summary:
Added "rust" to the languages in the if-service and its dependent targets, added a unique `rust_crate_name` to each one.
Adjusted import names in the dependent code.

Reviewed By: dtolnay

Differential Revision: D19818989

fbshipit-source-id: d1cf5c5f7b82dd64d7c045e50b304b7a58cf2ffc
This commit is contained in:
Michael Klepikov 2020-02-11 17:51:56 -08:00 committed by Facebook Github Bot
parent 4f82775a4b
commit 180fdcfad6
2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@
* GNU General Public License version 2.
*/
use if_ as acl_constants;
use infrasec_authorization as acl_constants;
use aclchecker::{AclChecker, Identity};
use anyhow::{bail, Error};

View File

@ -10,7 +10,7 @@
#![allow(deprecated)]
#![feature(never_type)]
use if_ as acl;
use infrasec_authorization as acl;
mod connection_acceptor;
mod errors;