Add dependency on split-sequence
This commit is contained in:
parent
7d1d2c9fa1
commit
bf590d0eea
|
@ -7,6 +7,7 @@
|
||||||
:version "0.0.1"
|
:version "0.0.1"
|
||||||
:serial t
|
:serial t
|
||||||
:depends-on (:cl-ppcre
|
:depends-on (:cl-ppcre
|
||||||
|
:split-sequence
|
||||||
:trivia)
|
:trivia)
|
||||||
:components ((:file "package")
|
:components ((:file "package")
|
||||||
(:file "ip-utils")))
|
(:file "ip-utils")))
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
(in-package #:ip-utils)
|
(in-package #:ip-utils)
|
||||||
|
|
||||||
(defun split-string (string &optional (char #\Space))
|
(defun split-string (string &optional (char #\Space))
|
||||||
(split-sequence:split-sequence char string))
|
(split-sequence char string))
|
||||||
|
|
||||||
(defclass ip ()
|
(defclass ip ()
|
||||||
((ip-number :initarg :ip-number)))
|
((ip-number :initarg :ip-number)))
|
||||||
|
|
|
@ -7,6 +7,9 @@
|
||||||
#:regex-replace
|
#:regex-replace
|
||||||
#:split)
|
#:split)
|
||||||
|
|
||||||
|
(:import-from #:split-sequence
|
||||||
|
#:split-sequence)
|
||||||
|
|
||||||
(:import-from #:trivia
|
(:import-from #:trivia
|
||||||
#:match)
|
#:match)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue