Skip to content

Commit

Permalink
add some libs
Browse files Browse the repository at this point in the history
  • Loading branch information
D00mch committed May 13, 2022
1 parent 27de072 commit f4e23db
Show file tree
Hide file tree
Showing 4 changed files with 63 additions and 1 deletion.
2 changes: 1 addition & 1 deletion deps.edn
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
:deps {org.clojure/clojure {:mvn/version "1.10.1"}
tensegritics/clojuredart
{:git/url "https://github.com/tensegritics/ClojureDart.git"
:sha "3b90d331ef52e2e8cd93b299da0127b59fe97428"}}}
:sha "698a2369d62e73cf458448f425864adc40237a80"}}}
42 changes: 42 additions & 0 deletions pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,13 @@ packages:
url: "https://pub.dartlang.org"
source: hosted
version: "2.8.2"
bip32_ed25519:
dependency: "direct main"
description:
name: bip32_ed25519
url: "https://pub.dartlang.org"
source: hosted
version: "0.2.1"
boolean_selector:
dependency: transitive
description:
Expand Down Expand Up @@ -92,6 +99,13 @@ packages:
url: "https://pub.dartlang.org"
source: hosted
version: "1.2.0"
ffi:
dependency: transitive
description:
name: ffi
url: "https://pub.dartlang.org"
source: hosted
version: "1.1.2"
file:
dependency: transitive
description:
Expand All @@ -111,6 +125,13 @@ packages:
url: "https://pub.dartlang.org"
source: hosted
version: "1.0.4"
flutter_sodium:
dependency: "direct main"
description:
name: flutter_sodium
url: "https://pub.dartlang.org"
source: hosted
version: "0.2.0"
flutter_test:
dependency: "direct dev"
description: flutter
Expand All @@ -130,6 +151,20 @@ packages:
url: "https://pub.dartlang.org"
source: hosted
version: "2.0.2"
http:
dependency: "direct main"
description:
name: http
url: "https://pub.dartlang.org"
source: hosted
version: "0.13.4"
http_parser:
dependency: transitive
description:
name: http_parser
url: "https://pub.dartlang.org"
source: hosted
version: "4.0.0"
lints:
dependency: transitive
description:
Expand Down Expand Up @@ -179,6 +214,13 @@ packages:
url: "https://pub.dartlang.org"
source: hosted
version: "1.8.0"
pinenacl:
dependency: transitive
description:
name: pinenacl
url: "https://pub.dartlang.org"
source: hosted
version: "0.3.4"
pub_semver:
dependency: transitive
description:
Expand Down
8 changes: 8 additions & 0 deletions pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,14 @@ dependencies:
cupertino_icons: ^1.0.2
feather_icons: ^1.2.0

# crypto
flutter_sodium: ^0.2.0
bip32_ed25519: ^0.2.1


# network
http: ^0.13.4

# utility
logger: ^1.1.0
flutter_windowmanager: ^0.2.0
Expand Down
12 changes: 12 additions & 0 deletions src/minataurus/sdk.cljd
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
(ns minataurus.sdk
(:require
[clojure.string :refer [join capitalize]]
[minataurus.utils :as utils]))


(def ^:private logger (utils/build-logger "sdk"))

(defn- log [& args] (.d logger(join " " (list* "main: " args))))

(defn init []
(log "init"))

0 comments on commit f4e23db

Please sign in to comment.