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