This commit is contained in:
Ronaldson Bellande 2024-10-14 01:26:06 -04:00
parent e773f11555
commit 262acaa433
6 changed files with 26 additions and 23 deletions

View File

@ -35,7 +35,7 @@ async-trait = "0.1"
futures = "0.3"
chrono = "0.4"
rand = "0.8"
openssl-sys = "0.9"
openssl = "0.10"
[dev-dependencies]
assert_cmd = "2.0"

20
dependencies.bellande Normal file
View File

@ -0,0 +1,20 @@
glob: "0.3.1"
tempfile: "3.3.0"
shellexpand: "3.1.0"
meval: "0.2.0"
reqwest: "0.11"
serde: "1.0"
serde_json: "1.0"
thiserror: "1.0"
anyhow: "1.0"
clap: "4.0"
regex: "1.7"
lazy_static: "1.4"
log: "0.4"
env_logger: "0.10"
tokio: "1.0"
async-trait: "0.1"
futures: "0.3"
chrono: "0.4"
rand: "0.8"
openssl: "0.10"

View File

@ -1,20 +0,0 @@
glob = "0.3.1"
tempfile = "3.3.0"
shellexpand = "3.1.0"
meval = "0.2.0"
reqwest = "0.11"
serde = "1.0"
serde_json = "1.0"
thiserror = "1.0"
anyhow = "1.0"
clap = "4.0"
regex = "1.7"
lazy_static = "1.4"
log = "0.4"
env_logger = "0.10"
tokio = "1.0"
async-trait = "0.1"
futures = "0.3"
chrono = "0.4"
rand = "0.8"
openssl-sys = "0.9"

View File

@ -1 +1 @@
bellande_rust_executable -d dependencies.txt -s src -m bellronos.rs -o executable/bellronos
bellande_rust_executable -d dependencies.bellande -s src -m bellronos.rs -o executable/bellronos

View File

@ -1 +1 @@
bellande_rust_executable -d dependencies.txt -s src -m bellronos.rs -o executable/bellronos
bellande_rust_executable -d dependencies.bellande -s src -m bellronos.rs -o executable/bellronos

View File

@ -29,6 +29,9 @@ use package_manager::package_manager::PackageManager;
use std::env;
use std::fs;
#[global_allocator]
static GLOBAL: std::alloc::System = std::alloc::System;
fn main() -> Result<(), BellronosError> {
let args: Vec<String> = env::args().collect();
if args.len() < 2 {