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:
parent
3e6bdbd9ee
commit
76866f054f
3 changed files with 13 additions and 0 deletions
10
.travis.yml
10
.travis.yml
|
@ -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
3
src/service/mod.rs
Normal file
|
@ -0,0 +1,3 @@
|
|||
mod senderror;
|
||||
|
||||
pub use self::senderror::{SendError, SendResponse};
|
Loading…
Reference in a new issue