aboutsummaryrefslogtreecommitdiff
path: root/src/rust/include.am
AgeCommit message (Collapse)Author
2021-10-06rust: Remove Rust support from treeDavid Goulet
Closes #40469 Signed-off-by: David Goulet <dgoulet@torproject.org>
2018-06-20add build.rs to EXTRA_DISTNick Mathewson
2018-05-15rust: Move rand crate into crypto parent crate.Isis Lovecruft
2018-05-08rust: Add crypto crate and implement Rust wrappers for SHA2 code.Isis Lovecruft
* FIXES #24659: https://bugs.torproject.org/24659
2018-05-04build: Fix missing include for src/rust/external/crypto_rand.rs file.Isis Lovecruft
* FIXES #26025: https://bugs.torproject.org/26025
2018-05-03I should have tested before I pushed.Nick Mathewson
2018-05-03Add src/rust/rand to include.amNick Mathewson
2018-04-06Include tor_log rust files in source distribution.Nick Mathewson
Fixes another case of #25732; bug not in any released Tor.
2018-04-06Ship all files needed to build Tor with rustNick Mathewson
Fixes bug 25732; bugfix on 0.3.3.2-alpha when strings.rs was introduced.
2017-10-27Include rust files in 'make dist'Nick Mathewson
2017-10-27refactor build infrastructure for single rust binaryChelsea Holland Komlo
2017-10-27use tor allocator for string allocation in rustChelsea Holland Komlo
2017-10-27rust implementation of protoverChelsea Holland Komlo
2017-05-19Allow Rust build using locally supplied crates or crates.ioSebastian Hahn
This adds a couple of configure commands to control whether we're requiring all dependencies to be available locally (default) or not (--enable-cargo-online-mode). When building from a tarball, we require the RUST_DEPENDENCIES variable to point to the local repository of crates. This also adds src/ext/rust as a git submodule that contains such a local repository for easy setup.
2017-05-19Add some Rust utility functions and print supportSebastian Hahn
This gives an indication in the log that Tor was built with Rust support, as well as laying some groundwork for further string-returning APIs to be converted to Rust