Skip to content

Commit 2f80178

Browse files
committed
initial commit
0 parents  commit 2f80178

File tree

8 files changed

+998
-0
lines changed

8 files changed

+998
-0
lines changed

.github/FUNDING.yml

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# These are supported funding model platforms
2+
3+
github: [knurling-rs] # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
4+
patreon: # Replace with a single Patreon username
5+
open_collective: # Replace with a single Open Collective username
6+
ko_fi: # Replace with a single Ko-fi username
7+
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
8+
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
9+
liberapay: # Replace with a single Liberapay username
10+
issuehunt: # Replace with a single IssueHunt username
11+
otechie: # Replace with a single Otechie username
12+
custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/target

Cargo.lock

+320
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
[package]
2+
authors = ["The Knurling-rs developers"]
3+
edition = "2018"
4+
license = "MIT OR Apache-2.0"
5+
name = "flip-link"
6+
version = "0.1.0"
7+
8+
[dependencies]
9+
anyhow = "1.0.32"
10+
env_logger = "0.7.1"
11+
log = "0.4.11"
12+
object = "0.21.1"
13+
tempfile = "3.1.0"

0 commit comments

Comments
 (0)