Compare commits

..

2 commits

Author SHA1 Message Date
sinavir f73a82826c feat(tvix): update to get router combinator 2024-08-14 19:05:52 +02:00
sinavir bdf5b5389a fix(precommit): Add some hooks 2024-08-14 18:54:02 +02:00
3 changed files with 231 additions and 178 deletions

397
Cargo.lock generated

File diff suppressed because it is too large Load diff

View file

@ -11,10 +11,10 @@ tonic = "0.12.1"
tower = "0.4.13"
tower-http = "0.5.2"
tracing = "0.1.40"
tvix-castore = { git = "https://git.dgnum.eu/mdebray/tvl-depot", rev = "10ba68134d175769bb9dea9ebce56e4775cff1b0" }
tvix-store = { git = "https://git.dgnum.eu/mdebray/tvl-depot", rev = "10ba68134d175769bb9dea9ebce56e4775cff1b0", features = ["xp-store-composition" ] }
tvix-tracing = { git = "https://git.dgnum.eu/mdebray/tvl-depot", rev = "10ba68134d175769bb9dea9ebce56e4775cff1b0" }
nar-bridge = { git = "https://git.dgnum.eu/mdebray/tvl-depot", rev = "10ba68134d175769bb9dea9ebce56e4775cff1b0" }
tvix-castore = { git = "https://git.dgnum.eu/mdebray/tvl-depot", rev = "cacf564e84444c8341fa4875e25481f07bd70f36" }
tvix-store = { git = "https://git.dgnum.eu/mdebray/tvl-depot", rev = "cacf564e84444c8341fa4875e25481f07bd70f36", features = ["xp-store-composition" ] }
tvix-tracing = { git = "https://git.dgnum.eu/mdebray/tvl-depot", rev = "cacf564e84444c8341fa4875e25481f07bd70f36" }
nar-bridge = { git = "https://git.dgnum.eu/mdebray/tvl-depot", rev = "cacf564e84444c8341fa4875e25481f07bd70f36" }
url = "2.5.2"
clap = "4.5.9"
axum = "0.7.5"

View file

@ -18,6 +18,10 @@ let
files = "\\.nix$";
};
# Rust
cargo-check.enable = true;
rustfmt.enable = true;
# Misc Hooks
commitizen.enable = true;
};