Loading .gitignore +7 −3 Original line number Diff line number Diff line *.sw[po] libcrypto*.dylib libcrypto*.so *.dylib *.so *.dSYM/ crypto /.rust /bin/ /build/ /lib/ /src/crypto/lib .travis.yml +1 −2 Original line number Diff line number Diff line Loading @@ -4,5 +4,4 @@ before_install: install: - sudo apt-get install rust-nightly script: - make all - ./crypto - make all test Makefile +10 −6 Original line number Diff line number Diff line RUSTPKG ?= rustpkg RUSTC ?= rustc RUST_FLAGS ?= -Z debug-info -O crypto: $(wildcard *.rs) rustc crypto.rs rustc --test crypto.rs all: $(RUSTPKG) $(RUST_FLAGS) install crypto test: $(RUSTC) $(RUST_FLAGS) --test src/crypto/lib.rs ./src/crypto/lib clean: rm -f crypto libcrypto-*.so rm -f libcrypto-*.dylib rm -rf *.dSYM rm -rf bin/ lib/ build/ src/crypto/lib hash.rs→src/crypto/hash.rs +0 −0 File moved. View file hex.rs→src/crypto/hex.rs +0 −0 File moved. View file Loading
.gitignore +7 −3 Original line number Diff line number Diff line *.sw[po] libcrypto*.dylib libcrypto*.so *.dylib *.so *.dSYM/ crypto /.rust /bin/ /build/ /lib/ /src/crypto/lib
.travis.yml +1 −2 Original line number Diff line number Diff line Loading @@ -4,5 +4,4 @@ before_install: install: - sudo apt-get install rust-nightly script: - make all - ./crypto - make all test
Makefile +10 −6 Original line number Diff line number Diff line RUSTPKG ?= rustpkg RUSTC ?= rustc RUST_FLAGS ?= -Z debug-info -O crypto: $(wildcard *.rs) rustc crypto.rs rustc --test crypto.rs all: $(RUSTPKG) $(RUST_FLAGS) install crypto test: $(RUSTC) $(RUST_FLAGS) --test src/crypto/lib.rs ./src/crypto/lib clean: rm -f crypto libcrypto-*.so rm -f libcrypto-*.dylib rm -rf *.dSYM rm -rf bin/ lib/ build/ src/crypto/lib