Skip to content

Commit

Permalink
Merge pull request #28 from blast-hardcheese/wrapping-up-standalone
Browse files Browse the repository at this point in the history
Wrapping up standalone
  • Loading branch information
blast-hardcheese authored Feb 19, 2024
2 parents 820a2b9 + ccc0d9a commit 5ee16be
Show file tree
Hide file tree
Showing 16 changed files with 210 additions and 1,012 deletions.
3 changes: 3 additions & 0 deletions .replit
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ hidden = ["target", ".cargo"]
modules = ["rust-stable:v4-20240117-0bd73cd"]
run = "cargo run -- ./config/development.conf"

[env]
HISTFILE = "$REPL_HOME/.cache/bash_history"

[nix]
channel = "stable-23_05"

Expand Down
100 changes: 61 additions & 39 deletions Cargo.lock

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

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,4 @@ tokio = "1.36.0"
uuid = { version = "1.3.4", features = ["v4", "serde"] }
toml = "0.8.10"
wson = { git = "https://github.com/blast-hardcheese/wson", branch = "expose-json-function" }
json-adapter = { git = "https://github.com/blast-hardcheese/json-adapter", version = "0.1.0" }
3 changes: 0 additions & 3 deletions replit.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,4 @@
pkgs.pkg-config
pkgs.vim
];
env = {
HISTFILE = "$REPL_HOME/.cache/bash_history";
};
}
2 changes: 1 addition & 1 deletion src/core/config/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ use serde::{Deserialize, Deserializer};
use toml;

use self::events::EventConfig;
use crate::routes::evaluate::JsonCryptogram;
use crate::model::cryptogram::JsonCryptogram;

#[derive(Clone, Debug, Deserialize)]
pub struct HttpClientConfig {
Expand Down
3 changes: 1 addition & 2 deletions src/core/core.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
pub mod cache;
pub mod config;
pub mod events;
pub mod headers;
pub mod model;
pub mod routes;
pub mod translate;
Loading

0 comments on commit 5ee16be

Please sign in to comment.