Skip to content

Commit a1694ae

Browse files
committed
ffi: remove from workspace
1 parent 1e1b2c4 commit a1694ae

File tree

8 files changed

+794
-5
lines changed

8 files changed

+794
-5
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
/target
2-
/Cargo.lock
32
*.svg
43
perf.data
54
perf.data.old

Cargo.lock

Lines changed: 21 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,7 @@ members = [
33
"negentropy",
44
"negentropy/fuzz/harness",
55
"negentropy/fuzz/perf",
6-
"negentropy-ffi",
76
]
8-
resolver = "2"
97

108
[profile.release]
119
lto = true

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ precommit:
22
cargo fmt --all -- --config format_code_in_doc_comments=true
33
cargo clippy -p negentropy && cargo clippy -p negentropy --no-default-features
44
cargo test -p negentropy && cargo test -p negentropy --no-default-features
5-
cargo build -p negentropy-ffi && cargo clippy -p negentropy-ffi && cargo test -p negentropy-ffi
5+
cd ./negentropy-ffi && make precommit
66

77
bench:
88
RUSTFLAGS='--cfg=bench' cargo +nightly bench -p negentropy
@@ -14,4 +14,4 @@ clean:
1414
cargo clean
1515

1616
loc:
17-
@echo "--- Counting lines of .rs files (LOC):" && find src/ -type f -name "*.rs" -exec cat {} \; | wc -l
17+
@echo "--- Counting lines of .rs files (LOC):" && find negentropy* -type f -name "*.rs" -exec cat {} \; | wc -l

negentropy-ffi/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1+
target/
12
ffi/

0 commit comments

Comments
 (0)