Skip to content

Commit

Permalink
Add full tutorial code as a crate
Browse files Browse the repository at this point in the history
  • Loading branch information
sffc committed Nov 8, 2023
1 parent 20baca3 commit 32cf749
Show file tree
Hide file tree
Showing 9 changed files with 380 additions and 9 deletions.
132 changes: 123 additions & 9 deletions docs/tutorials/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions docs/tutorials/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ members = [
"crates/custom_compiled",
"crates/default",
"crates/experimental",
"crates/interactive",
"crates/sync",
"testing",
]
14 changes: 14 additions & 0 deletions docs/tutorials/crates/interactive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# This file is part of ICU4X. For terms of use, please see the file
# called LICENSE at the top level of the ICU4X source tree
# (online at: https://github.com/unicode-org/icu4x/blob/main/LICENSE ).

[package]
name = "tutorial_interactive"
version = "0.0.0"
edition = "2021"
publish = false

[dependencies]
icu = { version = "1.3", features = ["serde"] }
icu_provider_blob = "1.3"
time = { version = "0.3", features = ["local-offset"] }
1 change: 1 addition & 0 deletions docs/tutorials/crates/interactive/data/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*.blob
6 changes: 6 additions & 0 deletions docs/tutorials/crates/interactive/data/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions docs/tutorials/crates/interactive/src/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
!bin/
Loading

0 comments on commit 32cf749

Please sign in to comment.