Skip to content

Commit

Permalink
Add licences and descriptions to the crates
Browse files Browse the repository at this point in the history
  • Loading branch information
DCNick3 committed Jun 9, 2023
1 parent 3ee8815 commit e37b089
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 5 deletions.
4 changes: 4 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ members = [
"crates/f-xoss-util",
]

[workspace.package]
license = "MPL-2.0"
repository = "https://github.com/DCNick3/f-xoss.git"

# The profile that 'cargo dist' will build with
[profile.dist]
inherits = "release"
Expand Down
8 changes: 5 additions & 3 deletions crates/f-xoss-util/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,13 @@
name = "f-xoss-util"
version = "0.1.0"
edition = "2021"
repository = "https://github.com/DCNick3/f-xoss.git"
license.workspace = true
repository.workspace = true
description = "Free your XOSS device: a FOSS companion app for XOSS bike computers"


[dependencies]
f-xoss = { path = "../f-xoss" }
f-xoss = { path = "../f-xoss", version = "0.1.0" }

btleplug = "0.10.5"
uuid = "1.3.2"
Expand Down Expand Up @@ -57,4 +59,4 @@ tracing-indicatif = "0.3.4"
ansi_term = "0.12.1"

[target.'cfg(target_os = "linux")'.dependencies]
dbus = { version = "0.9.7", features = ["vendored"] }
dbus = { version = "0.9.7", features = ["vendored"] }
6 changes: 4 additions & 2 deletions crates/f-xoss/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@
name = "f-xoss"
version = "0.1.0"
edition = "2021"
repository = "https://github.com/DCNick3/f-xoss.git"
license.workspace = true
repository.workspace = true
description = "Free your XOSS device: a library for communicating with XOSS bike computers"


[dependencies]
Expand Down Expand Up @@ -37,4 +39,4 @@ anyhow = "1.0.71"
tracing = "0.1.37"
#tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
tracing-futures = { version = "0.2.5", features = ["futures-03"] }
tracing-indicatif = "0.3.4"
tracing-indicatif = "0.3.4"

0 comments on commit e37b089

Please sign in to comment.