-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
En/117 Upgrade proxy to aws 7.0 api (#118)
* Updated dependencies to latest versions * Cleaned up build rs * Refactor for hyper * Removed deprecated base64 calls * Refactored hyper client to use legacy libs * moderation normalization updates for rekcognition 7.1 * Fix npm audit warnings * Force ipv4 localhost address for e2e tests * Updated nsfw test url * Added new labels to npm lib * Refactored rekognition normalization for clarity * npm lib version bump * Misc changes
- Loading branch information
1 parent
b12b64b
commit 49f6060
Showing
19 changed files
with
1,797 additions
and
1,294 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,3 @@ | ||
fn main() { | ||
let mut opts = built::Options::default(); | ||
opts.set_git(true); | ||
|
||
let src = std::env::var("CARGO_MANIFEST_DIR").unwrap(); | ||
let dst = std::path::Path::new(&std::env::var("OUT_DIR").unwrap()).join("built.rs"); | ||
|
||
built::write_built_file_with_opts(&opts, src.as_ref(), &dst) | ||
.expect("Failed to acquire build-time information"); | ||
built::write_built_file().expect("Failed to acquire build-time information"); | ||
} |
Oops, something went wrong.