1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-11-03 15:39:50 +00:00

move service to submodule; update travis config

This commit is contained in:
Nikolay Kim 2019-01-30 10:29:15 -08:00
parent 3e6bdbd9ee
commit 76866f054f
3 changed files with 13 additions and 0 deletions

View file

@ -14,6 +14,16 @@ matrix:
allow_failures:
- rust: nightly
env:
global:
- RUSTFLAGS="-C link-dead-code"
- OPENSSL_VERSION=openssl-1.0.2
before_install:
- sudo add-apt-repository -y ppa:0k53d-karl-f830m/openssl
- sudo apt-get update -qq
- sudo apt-get install -y openssl libssl-dev libelf-dev libdw-dev cmake gcc binutils-dev libiberty-dev
before_script:
- export PATH=$PATH:~/.cargo/bin

3
src/service/mod.rs Normal file
View file

@ -0,0 +1,3 @@
mod senderror;
pub use self::senderror::{SendError, SendResponse};