Skip to content

Commit

Permalink
🎉 Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark S committed Jul 14, 2022
0 parents commit fe64c4f
Show file tree
Hide file tree
Showing 15 changed files with 3,491 additions and 0 deletions.
49 changes: 49 additions & 0 deletions .cargo/config.example.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
#######################################
# Cargo-Specific Options #
#######################################

target-applies-to-host = false


#######################################
# Target-Specific Options #
#######################################

[target.x86_64-apple-darwin]
rustflags = [
"-C", "link-arg=-undefined",
"-C", "link-arg=dynamic_lookup",
]

[target.aarch64-apple-darwin]
rustflags = [
"-C", "link-arg=-undefined",
"-C", "link-arg=dynamic_lookup",
]

[target.x86_64-unknown-linux-gnu]
linker = "x86_64-unknown-linux-gnu-gcc"

#[target.aarch64-unknown-linux-gnu]
#linker = "aarch64-unknown-linux-gnu-gcc"

[target.x86_64-unknown-linux-musl]
linker = "x86_64-linux-musl-gcc"

[target.aarch64-unknown-linux-musl]
linker = "aarch64-linux-musl-gcc"

[target.x86_64-pc-windows-msvc]
linker = "rust-lld.exe"

# [target.wasm32-wasi]

# [target.wasm32-unknown-unknown]

# [target.wasm32-unknown-emscripten]

# [target.x86_64-unknown-linux-musl]

# [target.aarch64-unknown-linux-musl]


13 changes: 13 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Ignore everything
*

# EXCEPT the following (must be prepended with '!' to NOT be ignored)
!src/
!.cargo/
!artifacts/
!Cargo.lock
!Cargo.toml
!Cross.toml

# However, don't include these files, if they exist
**/.DS_Store
14 changes: 14 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Ignore
artifacts/**
.cargo/config.toml
Cross.toml
k8s/**
target/
.idea/
.run/

# Except
!artifacts/placeholder
!k8s/cluster-role.yaml
!k8s/role-binding.yaml
!k8s/pinnothera-config.yaml
Loading

0 comments on commit fe64c4f

Please sign in to comment.