-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
wip: remove rust bindings in favor of javascript, via javascripcore
- Loading branch information
1 parent
69fde4a
commit 3da150f
Showing
82 changed files
with
1,417 additions
and
5,714 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -89,6 +89,7 @@ line_length: | |
ignores_urls: true | ||
|
||
type_name: | ||
allowed_symbols: "_" | ||
max_length: | ||
warning: 60 | ||
error: 60 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
// | ||
// File.swift | ||
// | ||
// | ||
// Created by ErrorErrorError on 11/9/23. | ||
// | ||
// | ||
|
||
struct SwiftLog: PackageDependency { | ||
var name: String { "swift-log" } | ||
|
||
var dependency: Package.Dependency { | ||
.package(url: "https://github.com/apple/swift-log.git", from: "1.0.0"), | ||
} | ||
} | ||
|
||
struct Logging: Dependency { | ||
var targetDepenency: _PackageDescription_TargetDependency { | ||
.product(name: "\(Self.self)", package: SwiftLog().packageName) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
// | ||
// JSValueCoder.swift | ||
// | ||
// | ||
// Created by ErrorErrorError on 11/6/23. | ||
// | ||
// | ||
|
||
import Foundation | ||
|
||
struct JSValueCoder: _Shared {} | ||
|
||
extension JSValueCoder: Testable { | ||
struct Tests: TestTarget { | ||
var name: String { "JSValueCoderTests" } | ||
|
||
var dependencies: any Dependencies { | ||
JSValueCoder() | ||
} | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.