Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 2 additions & 20 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,21 +1,3 @@
# Compiled Object files
build/
*.o
*.obj

# Compiled Dynamic libraries
*.so
*.dylib
*.dll

# Compiled Static libraries
*.a
*.lib

# Executables
*.exe
app

# Cargo
/target
target
**/*.rs.bk
Cargo.lock
118 changes: 0 additions & 118 deletions Cargo.lock

This file was deleted.

57 changes: 43 additions & 14 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,22 +1,51 @@
[package]
name = "smake"
version = "0.0.2"
authors = ["ARaspiK <araspik@protonmail.com>"]

# General Information
name = "samurai"
version = "0.0.3"
authors = [
"ARaspiK <araspik@protonmail.com>"
]
description = "A heavy-duty Make library"
license = "MIT"
description = "A simple Make program"
edition = "2018"

repository = "https://github.com/araspik/smake"
# Public Use Metadata
publish = true
documentation = "https://docs.rs/samurai"
homepage = "https://github.com/araspik/samurai/blob/master/README.md"
readme = "README.md"
keywords = ["make"]
categories = ["development-tools::build-utils", "development-tools"]
keywords = [
"make",
]
categories = [
"development-tools",
"development-tools::build-utils",
]

# Code-specific Metadata
edition = '2018'

# Public Display Badges
[badges]
travis-ci = {repository = "araspik/smake", branch = "rust"}
travis-ci = { repository = "araspik/samurai", branch = "master" }
codecov = { repository = "araspik/samurai", branch = "master", service = "github" }
is-it-maintained-issue-resolution = { repository = "araspik/samurai" }
is-it-maintained-open-issues = { repository = "araspik/samurai" }
maintenance = { status = "actively-developed" }

# Profiles

# Dependencies
[dependencies]
serde = "1.0.85"
serde_derive = "1.0.85"
serde_yaml = "0.8.8"
getopts = "0.2.18"
custom_error = "1.3.0"
custom_error = "~1.4.0"
regex = "~1.1.0"

# Features
[features]

# Workspace
[workspace]
members = [
"formats",
"app",
]
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# SMake
SMake is a simple Make program, written in Rust.
# Samurai
Samurai is (will be) a heavy-duty Make program, written in Rust.

Hopefully my first actually complete project.
Hopefully, this is my first actually complete project.

View the [specification][spec] to see what this project will look like.

Expand All @@ -28,5 +28,5 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
```

[spec]: https:?/github.com/araspik/smake/wiki/Specification
[spec]: https://github.com/araspik/samurai/wiki/Specification
"SMake Specification"
47 changes: 47 additions & 0 deletions app/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
[package]

# General Information
name = "samurai_app"
version = "0.0.1"
authors = [
"ARaspiK <araspik@protonmail.com>"
]
description = "A heavy-duty make program"
license = "MIT"

# Public Use Metadata
publish = true
documentation = "https://docs.rs/samurai"
homepage = "https://github.com/araspik/samurai/blob/master/README.md"
readme = "README.md"
keywords = [
"make",
"make-program",
]
categories = [
"command-line-utilities",
"development-tools",
"development-tools::build-utils",
]

# Code-specific Metadata
edition = '2018'

# Workspace
workspace = ".."

# Public Display Badges
[badges]
travis-ci = { repository = "araspik/samurai", branch = "master" }
codecov = { repository = "araspik/samurai", branch = "master", service = "github" }
is-it-maintained-issue-resolution = { repository = "araspik/samurai" }
is-it-maintained-open-issues = { repository = "araspik/samurai" }
maintenance = { status = "actively-developed" }

# Profiles

# Dependencies
[dependencies]

# Features
[features]
3 changes: 3 additions & 0 deletions app/src/main.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}
46 changes: 46 additions & 0 deletions formats/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
[package]

# General Information
name = "samurai_formats"
version = "0.0.1"
authors = [
"ARaspiK <araspik@protonmail.com>"
]
description = "Default formats for Samurai"
license = "MIT"

# Public Use Metadata
publish = true
documentation = "https://docs.rs/samurai_formats"
homepage = "https://github.com/araspik/samurai/blob/master/README.md"
readme = "../README.md"
keywords = [
"formats",
"parsing",
"make",
]
categories = [
"parsing",
]

# Code-specific Metadata
edition = '2018'

# Worspace
workspace = ".."

# Public Display Badges
[badges]
travis-ci = { repository = "araspik/samurai", branch = "master" }
codecov = { repository = "araspik/samurai", branch = "master", service = "github" }
is-it-maintained-issue-resolution = { repository = "araspik/samurai" }
is-it-maintained-open-issues = { repository = "araspik/samurai" }
maintenance = { status = "actively-developed" }

# Profiles

# Dependencies
[dependencies]

# Features
[features]
Loading