The Sigils library will now only be compiled in and able to convert math structures if the convert_sigils feature is selected. use_std would have also been set as a feature, but the library heavily uses std::collections::vec::Vec. Until a non-std version of a collection has been written, then this needs to be used.
18 lines
336 B
Plaintext
18 lines
336 B
Plaintext
# Ignore swap files from text editors.
|
|
*.swp
|
|
|
|
# Ignore compiled files.
|
|
*.o
|
|
*.so
|
|
*.rlib
|
|
*.dll
|
|
*.exe
|
|
|
|
# Ignore files/directories generated by Cargo.
|
|
/target/
|
|
|
|
# Remove Cargo.lock from gitignore if creating an executable,
|
|
# leave it for libraries.
|
|
# More information here: http://doc.crates.io/guide.html#cargotoml-vs-cargolock
|
|
Cargo.lock
|