diff --git a/Cargo.lock b/Cargo.lock index a39c6ba..1f6df04 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -853,7 +853,7 @@ dependencies = [ ] [[package]] -name = "nitrogen-lib" +name = "nitrogen" version = "0.2.0" dependencies = [ "aws-config", diff --git a/Cargo.toml b/Cargo.toml index 8c95c5b..3b32f3c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,8 +1,9 @@ [package] -name = "nitrogen-lib" +name = "nitrogen" version = "0.2.0" description = "Nitrogen is a tool for deploying web services to AWS Nitro Enclaves." license = "Apache-2.0" +repository = "https://github.com/capeprivacy/nitrogen" edition = "2021" keywords = ["aws", "nitro", "enclave"] diff --git a/src/bin/nitrogen.rs b/src/bin/nitrogen.rs index 2d6ef5e..164274d 100644 --- a/src/bin/nitrogen.rs +++ b/src/bin/nitrogen.rs @@ -9,8 +9,8 @@ use std::time::Duration; use aws_sdk_cloudformation::Client; use clap::{Parser, Subcommand}; use failure::Error; -use nitrogen_lib::commands::{build, delete, deploy, setup}; -use nitrogen_lib::template::SETUP_TEMPLATE; +use nitrogen::commands::{build, delete, deploy, setup}; +use nitrogen::template::SETUP_TEMPLATE; use tracing::{debug, info}; use rust_embed::{EmbeddedFile, RustEmbed}; diff --git a/sts.sh b/sts.sh old mode 100644 new mode 100755