Skip to content

Commit

Permalink
Add update
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolaschan committed Sep 10, 2024
1 parent 92bc5b1 commit 293556b
Show file tree
Hide file tree
Showing 9 changed files with 473 additions and 13 deletions.
208 changes: 208 additions & 0 deletions Cargo.lock

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

3 changes: 3 additions & 0 deletions insanity-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,6 @@ edition = "2021"

[dependencies]
bon = "2.1.1"

[build-dependencies]
built = { version = "0.7.4", features = ["chrono", "git2"] }
3 changes: 3 additions & 0 deletions insanity-core/build.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
fn main() {
built::write_built_file().expect("Failed to acquire build-time information");
}
6 changes: 5 additions & 1 deletion insanity-core/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
pub mod audio_source;
pub mod user_input_event;
pub mod loudness;
pub mod user_input_event;

pub mod built_info {
include!(concat!(env!("OUT_DIR"), "/built.rs"));
}
5 changes: 5 additions & 0 deletions insanity-native-tui-app/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,3 +43,8 @@ argon2 = "0.5.3"
chacha20poly1305 = "0.10.1"
blake3 = "1.5.4"
ed25519-dalek = { version = "2.1.1", features = ["serde"] }
reqwest = { version = "0.12.7", features = ["native-tls-vendored", "json"] }
tracing-subscriber = "0.3.18"
tempfile = "3.12.0"
indicatif = { version = "0.17.8", features = ["tokio"] }
zip = "2.2.0"
1 change: 1 addition & 0 deletions insanity-native-tui-app/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ pub mod protocol;
pub mod realtime_buffer;
pub mod room_handler;
pub mod server;
pub mod update;
Loading

0 comments on commit 293556b

Please sign in to comment.