diff --git a/.circleci/config.yml b/.circleci/config.yml
deleted file mode 100644
index a1907fe7875ed2d280beaf677b8a0776ba753d05..0000000000000000000000000000000000000000
--- a/.circleci/config.yml
+++ /dev/null
@@ -1,20 +0,0 @@
-version: 2
-
-jobs:
-  build:
-    docker:
-      # The image used to build our project, build
-      # your own using the Dockerfile provided below
-      # and replace here. I put my own image here for
-      # the example.
-      - image: abronan/rust-circleci:latest
-    steps:
-      - checkout
-      - run: rustup update
-      - restore_cache:
-          key: cargo-cache
-      - run: rustup run nightly cargo build
-      - save_cache:
-          key: cargo-cache
-          paths:
-            - "~/.cargo"
\ No newline at end of file