Replies: 4 comments
-
Just a heads-up, we decided on using |
Beta Was this translation helpful? Give feedback.
-
I am glad you ask :).
The line above will do the trick. Currently the small = ["lean-cli", "git-features/sha1", "git-features/zlib-rust-backend"] …which also means that multi-threading will be disabled and everything will be using a Rust implementation. It's totally possible to re-enable parallelism and get something like a This kind of configuration is meant to be done by applications using All features are explained here.
There is no In case you are interested in creating your own application, I recommend pulling in Lastly, you can configure everything else in If you run into trouble or have any additional questions, please let me know as this would be considered a bug. The idea is that applications have a lot of control over what goes into it. |
Beta Was this translation helpful? Give feedback.
-
OK, thank you guys! It compiles now. Can you share why the performance is your # 1 metric? What is the use case? |
Beta Was this translation helpful? Give feedback.
-
The problem with C libs is that it severely complicates cross compilation, for instance compiling this library for IOS. Personally I think there should always be an option to opt-out of C deps if a native rust version is available. |
Beta Was this translation helpful? Give feedback.
-
Is there an option to swap
zlib-ng
for a native Rust implementation?I see there is a whole lot of different options, but none maps directly to disabling
zlib-ng
.I got this on
cargo run
after cloning the repo:I only really need
git-log
at this stage.Beta Was this translation helpful? Give feedback.
All reactions