Skip to content

Commit

Permalink
Exclude cli and auth from workspace, flake.nix
Browse files Browse the repository at this point in the history
Auth isn't really a part of encrypted_file_server, it's a separate
component so it shouldn't be included in the workspace.
  • Loading branch information
billyb2 committed Oct 30, 2023
1 parent 0fe7073 commit bbd765a
Show file tree
Hide file tree
Showing 11 changed files with 2,673 additions and 909 deletions.
970 changes: 66 additions & 904 deletions Cargo.lock

Large diffs are not rendered by default.

5 changes: 3 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,11 @@ once_cell = "1"
futures = { version = "0.3", features = ["executor"] }
macaroon = "0.3"


[workspace]
members = [
"cli",
"bfsp",
]
exclude = [
"cli",
"auth",
]
11 changes: 11 additions & 0 deletions auth/.cargo/config.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
[target.x86_64-unknown-linux-gnu]
rustflags = ["-Clink-arg=-fuse-ld=mold"]

[target.x86_64-apple-darwin]
rustflags = ["-Clink-arg=-fuse-ld=zld"]

[target.x86_64-pc-windows-msvc]
linker = "rust-lld.exe"

[target.x86_64-pc-windows-gnu]
linker = "x86_64-w64-mingw32-gcc"
1 change: 1 addition & 0 deletions auth/.envrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
use flake;
Loading

0 comments on commit bbd765a

Please sign in to comment.